File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,10 @@ case $GPU_ARCH_TYPE in
7777 ;;
7878esac
7979PYTORCH_WHEEL_INDEX=" https://download.pytorch.org/whl/${CHANNEL} /${GPU_ARCH_ID} "
80- pip install --progress-bar=off --pre torch --index-url=" ${PYTORCH_WHEEL_INDEX} "
80+ # pip install --progress-bar=off --pre torch --index-url="${PYTORCH_WHEEL_INDEX}"
81+
82+ # install torch built with manylinux 2.28
83+ pip install --progress-bar=off --pre torch==2.6.0.dev20241106 --index-url=https://download.pytorch.org/whl/nightly/cpu --force-reinstall
8184
8285if [[ $GPU_ARCH_TYPE == ' cuda' ]]; then
8386 python -c " import torch; exit(not torch.cuda.is_available())"
Original file line number Diff line number Diff line change 3333 export PYTHON_VERSION=3.9
3434 export GPU_ARCH_TYPE=${{ matrix.gpu-arch-type }}
3535 export GPU_ARCH_VERSION=${{ matrix.gpu-arch-version }}
36-
37- #install torch built with manylinux 2.28
38- pip install --progress-bar=off --pre torch==2.6.0.dev20241106 --index-url=https://download.pytorch.org/whl/nightly/cpu --force-reinstall
39-
4036 ./.github/scripts/cmake.sh
4137
4238 macos :
You can’t perform that action at this time.
0 commit comments