Skip to content

Commit

Permalink
Change torch versions (#7806)
Browse files Browse the repository at this point in the history
  • Loading branch information
mc-nv committed Nov 23, 2024
1 parent 905a461 commit be7a8cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qa/L0_backend_python/decoupled/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SERVER_LOG="./decoupled_server.log"
pip3 uninstall -y torch
# FIXME: Until Windows supports GPU tensors, only test CPU scenarios
if [[ ${TEST_WINDOWS} == 1 ]]; then
pip3 install torch==1.13.0 -f https://download.pytorch.org/whl/torch_stable.html
pip3 install torch==2.3.1 -f https://download.pytorch.org/whl/torch_stable.html
else
pip3 install torch==2.3.1+cu118 -f https://download.pytorch.org/whl/torch_stable.html
fi
Expand Down
2 changes: 1 addition & 1 deletion qa/L0_backend_python/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ if [ "$TEST_JETSON" == "0" ] && [[ ${TEST_WINDOWS} == 0 ]]; then
pip3 install torch==2.3.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
else
# GPU tensor tests are disabled on jetson
pip3 install torch==1.13.0 -f https://download.pytorch.org/whl/torch_stable.html
pip3 install torch==2.3.1 -f https://download.pytorch.org/whl/torch_stable.html
fi

pip3 install pytest requests virtualenv
Expand Down

0 comments on commit be7a8cd

Please sign in to comment.