Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions scripts/unittest_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,3 @@ fi
echo '************************************************************************************************************'

exit ${check_error}



5 changes: 4 additions & 1 deletion scripts/unittest_check_gpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ set +x

echo '************************************************************************************************************'
echo "Insalling latest release gpu version torch"
#python -m pip install -U torch torchvision --index-url https://download.pytorch.org/whl/cu118
python -m pip uninstall -y torchaudio
python -m pip install torch-2.7.1+cu118-cp310-cp310-manylinux_2_28_x86_64.whl
python -m pip install torchvision-0.22.1+cu118-cp310-cp310-manylinux_2_28_x86_64.whl
# python -m pip install -U torch torchvision --index-url https://download.pytorch.org/whl/cu118
python -c "import torch; print('torch version information:' ,torch.__version__)"

echo '************************************************************************************************************'
Expand Down
5 changes: 4 additions & 1 deletion tests/distributed/unittest_check_distribute.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ set +x

echo '************************************************************************************************************'
echo "Insalling latest release gpu version torch"
#python -m pip install -U torch --index-url https://download.pytorch.org/whl/cu118
python -m pip uninstall -y torchaudio
python -m pip uninstall -y torchvision
python -m pip install torch-2.7.1+cu118-cp310-cp310-manylinux_2_28_x86_64.whl
# python -m pip install -U torch --index-url https://download.pytorch.org/whl/cu118
python -c "import torch; print('torch version information:' ,torch.__version__)"

echo '************************************************************************************************************'
Expand Down