Skip to content

Commit 08c79e5

Browse files
committed
test
1 parent 652d240 commit 08c79e5

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/scripts/setup-env.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@ case $GPU_ARCH_TYPE in
7777
;;
7878
esac
7979
PYTORCH_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

8285
if [[ $GPU_ARCH_TYPE == 'cuda' ]]; then
8386
python -c "import torch; exit(not torch.cuda.is_available())"

.github/workflows/build-cmake.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ jobs:
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:

0 commit comments

Comments
 (0)