Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.git
**/.git
.github/
.cursor/

build
build/
build_*/
base/build/
cmake-build-*/
dist/

__pycache__/
*.py[cod]
.pytest_cache/
.mypy_cache/
.cache/
.venv/
env/
venv/

.vscode/
.idea/
imgui.ini
46 changes: 36 additions & 10 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,46 @@ name: Docker Image CI

on:
push:
branches: [ "public", "github-actions" ]
branches: [main, master, public, reorg]
pull_request:
branches: [ "public", "github-actions" ]
branches: [main, master, public, reorg]

jobs:

build:
concurrency:
group: docker-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
docker:
name: Docker (CUDA_ARCH=${{ matrix.cuda_arch }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
cuda_arch: ["86"]

steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Free disk space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: true
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true

- name: Build Docker image
run: |
docker build . \
--file Dockerfile \
--build-arg CUDA_ARCH=${{ matrix.cuda_arch }} \
--tag instantvnr:ci-${{ github.sha }}

- name: Build the Docker image
run: docker build . --file Dockerfile --tag instantvnr:$(date +%s)
- name: Verify install prefix exists
run: |
docker run --rm instantvnr:ci-${{ github.sha }} \
ls /instantvnr/install/lib/cmake/instantvnr/instantvnrConfig.cmake
156 changes: 156 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,157 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Datasets
logs/
.DS_Store

composer/
eval_metrics_*
params.json
params.pt

/deps/
model*.pt
output.json
.vscode/


build
build_dav
build/
build_*/
*.pt

magma/
imgui.ini

# for sharing test ckpt file
!SIREN_shadow_test/sample_siren_1499_validation.pt
SIREN_shadow_test/*.bson
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[submodule "tcnn"]
path = tcnn
url = https://github.com/wilsonCernWq/tiny-cuda-nn.git
[submodule "base"]
path = base
url = https://github.com/VIDILabs/open-volume-renderer.git
branch = reorg
Loading
Loading