Compare commits

...

4 Commits

Author SHA1 Message Date
Austin Glover
4f0a3ab102 Merge branch 'main' into nvidia-devcontainer-args 2026-03-31 13:52:26 -07:00
Austin Glover
648720caf9 force a 12.8 cuda version of torch. 2026-03-31 20:33:44 +00:00
Austin Glover
21ed7ef31f gitignore claude , codex 2026-03-31 20:24:00 +00:00
Austin Glover
386b3df983 try recommended nvidia container args 2026-03-31 18:57:14 +00:00
3 changed files with 17 additions and 3 deletions

View File

@@ -3,8 +3,11 @@
"image": "ghcr.io/luminal-ai/luminal-docker:cuda",
"initializeCommand": "touch .env",
"runArgs": [
"--gpus=all",
"--env-file", ".env"
"--env-file",
".env",
"--runtime=nvidia",
"--env=NVIDIA_VISIBLE_DEVICES=nvidia.com/gpu=all",
"--env=NVIDIA_DRIVER_CAPABILITIES=compute,utility"
],
"containerEnv": {
"CARGO_HOME": "/home/ubuntu/.cache/luminal/cargo"
@@ -49,4 +52,4 @@
]
}
}
}
}

1
.gitignore vendored
View File

@@ -17,6 +17,7 @@ Cargo.lock
.claude-project
.claude-memory
.codex
*.pftrace
*.safetensors

View File

@@ -12,6 +12,16 @@ dependencies = [
"safetensors",
]
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[tool.uv.sources]
torch = [
{ index = "pytorch-cu128", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]
[build-system]
requires = ["maturin>=1.0,<2.0"]