Skip to content

Instantly share code, notes, and snippets.

View aadith-warrier's full-sized avatar

Aadith S Warrier aadith-warrier

View GitHub Profile
"""
Generic template for building a Rerun + Gradio visualization pipeline.
"""
import gradio as gr
import numpy as np
import uuid
import rerun as rr
from gradio_rerun import Rerun
from rerun.blueprint import Vertical, Horizontal, Spatial2DView, Spatial3DView, Blueprint
@aadith-warrier
aadith-warrier / install_minkowski_engine.md
Created June 15, 2025 14:55
Install Minkowski Engine anywhere

Minkowski Engine Install for SLURM/HPC environments with no sudo access.

CUDA < 12.4 should work. 12.4+ works with some patches check this issue.

module load <cuda 11.8> 

export CUDA_HOME=<path to cuda 11.8>  # adjust this to your environment check by running 'module show <module_name>'
export PATH=$CUDA_HOME/bin:$PATH
export LD_LIBRARY_PATH=$CUDA_HOME/lib64:$LD_LIBRARY_PATH