Skip to content

Commit

Permalink
Merge pull request #147 from deiteris/fix-torch-version
Browse files Browse the repository at this point in the history
Fix torch to 2.3.1
  • Loading branch information
deiteris authored Jul 24, 2024
2 parents d356c30 + f930779 commit 2a18e32
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion server/requirements-cpu.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
# # bash Anaconda3-2022.10-Linux-x86_64.sh

--extra-index-url https://download.pytorch.org/whl/cpu
torch
# torch 2.4.0 has problems with Linux builds
torch==2.3.1
torchaudio
faiss-cpu==1.8.0

Expand Down
3 changes: 2 additions & 1 deletion server/requirements-cuda.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

# PyPI onnxruntime-gpu is compiled with CUDA 11.x
--extra-index-url https://download.pytorch.org/whl/cu118
torch
# torch 2.4.0 has problems with Linux builds
torch==2.3.1
torchaudio
faiss-cpu==1.8.0; sys_platform!='linux'
faiss-gpu; sys_platform=='linux'
Expand Down
3 changes: 2 additions & 1 deletion server/requirements-rocm.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
# # bash Anaconda3-2022.10-Linux-x86_64.sh

--extra-index-url https://download.pytorch.org/whl/rocm6.0
torch
# torch 2.4.0 has problems with Linux builds
torch==2.3.1
torchaudio
faiss-cpu==1.8.0

Expand Down

0 comments on commit 2a18e32

Please sign in to comment.