File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ git --no-pager log --max-count 1
62
62
popd
63
63
64
64
# Clone the Builder master repo
65
- retry git clone -q https://github.com/pytorch/builder.git " $BUILDER_ROOT "
65
+ retry git clone -q https://github.com/pytorch/builder.git -b release/1.12 " $BUILDER_ROOT "
66
66
pushd " $BUILDER_ROOT "
67
67
echo " Using builder from "
68
68
git --no-pager log --max-count 1
Original file line number Diff line number Diff line change @@ -99,6 +99,6 @@ function checkout_install_torchvision() {
99
99
100
100
function clone_pytorch_xla() {
101
101
if [[ ! -d ./xla ]]; then
102
- git clone --recursive --quiet https://github.com/pytorch/xla.git
102
+ git clone --recursive -b release/1.12 https://github.com/pytorch/xla.git
103
103
fi
104
104
}
Original file line number Diff line number Diff line change @@ -460,7 +460,7 @@ test_forward_backward_compatibility() {
460
460
python -m venv venv
461
461
# shellcheck disable=SC1091
462
462
. venv/bin/activate
463
- pip_install --pre torch -f https://download.pytorch.org/whl/nightly /cpu/torch_nightly .html
463
+ pip_install --pre torch -f https://download.pytorch.org/whl/test /cpu/torch_test .html
464
464
pip show torch
465
465
python dump_all_function_schemas.py --filename nightly_schemas.txt
466
466
# FC: verify newmodel can be load with old code.
You can’t perform that action at this time.
0 commit comments