gitextract_en0yens4/ ├── .clang-format ├── .clangd_template ├── .github/ │ └── workflows/ │ ├── building.yml │ ├── core_tests.yml │ └── cuda/ │ ├── Linux-env.sh │ ├── Linux.sh │ ├── Windows-env.sh │ └── Windows.sh ├── .gitignore ├── .gitmodules ├── LICENSE ├── MANIFEST.in ├── README.md ├── assets/ │ └── test_garden.npz ├── build_extensions.py ├── examples/ │ ├── lidar_rendering.ipynb │ └── rolling_shutter.ipynb ├── gsplat/ │ ├── __init__.py │ ├── _helper.py │ ├── compression/ │ │ ├── __init__.py │ │ ├── png_compression.py │ │ └── sort.py │ ├── cuda/ │ │ ├── __init__.py │ │ ├── _backend.py │ │ ├── _torch_impl.py │ │ ├── _wrapper.py │ │ └── csrc/ │ │ ├── bindings.h │ │ ├── ext.cpp │ │ ├── helpers.cuh │ │ ├── projection.cu │ │ ├── rasterization.cu │ │ ├── relocation.cu │ │ ├── sh.cu │ │ └── utils.cuh │ ├── distributed.py │ ├── profile.py │ ├── relocation.py │ ├── rendering.py │ ├── strategy/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── default.py │ │ ├── mcmc.py │ │ └── ops.py │ ├── utils.py │ └── version.py ├── pyproject.toml ├── setup.py └── tests/ ├── _test_distributed.py ├── test_basic.py ├── test_compression.py ├── test_rasterization.py └── test_strategy.py