Skip to content

Commit

Permalink
back to cu121
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilien Le Clei committed Oct 22, 2024
1 parent 438a9ed commit e97b1d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# for development purposes.
# ----------------------------------------------------------------------------#
# ~ CUDA + cuDNN on Ubuntu ~ #
FROM nvcr.io/nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04
FROM nvcr.io/nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04
# Prevents Python from creating __pycache__/ and .pyc/ folders in the project
# folder
ENV PYTHONPYCACHEPREFIX=/.cache/python/
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = "0.0.1"
# The following assumes that we build on top of the NGC PyTorch Docker image.
dependencies = [
# MANDATORY for cneuromax/
"torch==2.5.0+cu124", # Tensor manipulation
"torch==2.5.0+cu121", # Tensor manipulation
"hydra-core==1.3.2", # Configuration management
"hydra-zen==0.13.0", # Cleaner Hydra configs
"beartype==0.19.0", # Dynamic type checking
Expand Down Expand Up @@ -49,8 +49,8 @@ dependencies = [
# MANDATORY for cneuromax/fitting/deeplearning/
"lightning==2.4.0", # PyTorch wrapper to decrease boilerplate
# OPTIONAL for cneuromax/fitting/deeplearning/
"torchaudio==2.5.0+cu124", # Tensor manipulation on audio data
"torchvision==0.20.0+cu124", # Tensor manipulation on vision data
"torchaudio==2.5.0+cu121", # Tensor manipulation on audio data
"torchvision==0.20.0+cu121", # Tensor manipulation on vision data
"transformers==4.45.2", # Pre-trained models published on Hugging Face
"diffusers==0.30.3", # Diffusion models published on Hugging Face
"timm==1.0.11", # Image models
Expand Down Expand Up @@ -95,7 +95,7 @@ torchvision = { index = "pytorch" }

[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu124"
url = "https://download.pytorch.org/whl/cu121"
explicit = true

[tool.black]
Expand Down

0 comments on commit e97b1d6

Please sign in to comment.