Skip to content

Commit d0ffd50

Browse files
authored
Fix PyTorch index url for package (#286)
The default PyTorch 2.8.0 package uses CUDA 12.8. We need to specify the PyTorch CUDA 12.9 index URL in order to pick up the right version. This also switches the dev dockerfile to CUDA 12.9 in order to match the package. --------- Signed-off-by: Matthew Cong <mcong@nvidia.com>
1 parent 7927c20 commit d0ffd50

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nvidia/cuda:12.8.1-cudnn-devel-ubuntu22.04
1+
FROM nvidia/cuda:12.9.1-cudnn-devel-ubuntu22.04
22

33
# Set environment variables to prevent interactive prompts during installation.
44
ENV DEBIAN_FRONTEND=noninteractive

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ are provided.
4848
Install fvdb_core using the following pip command.
4949

5050
```
51-
pip install fvdb_core==0.3.0+pt28.cu129 --extra-index-url="https://d36m13axqqhiit.cloudfront.net/simple" torch==2.8.0
51+
pip install fvdb_core==0.3.0+pt28.cu129 --extra-index-url="https://d36m13axqqhiit.cloudfront.net/simple" torch==2.8.0 --extra-index-url https://download.pytorch.org/whl/cu129
5252
```
5353

5454
## Building *f*VDB from Source

0 commit comments

Comments
 (0)