File tree 5 files changed +9
-9
lines changed
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 25
25
type : string
26
26
test-infra-ref :
27
27
description : " Test infra reference to use"
28
- default : " "
28
+ default : " release/2.2 "
29
29
type : string
30
30
build-matrix :
31
31
description : " Build matrix to utilize"
Original file line number Diff line number Diff line change @@ -54,14 +54,14 @@ http_archive(
54
54
name = "libtorch" ,
55
55
build_file = "@//third_party/libtorch:BUILD" ,
56
56
strip_prefix = "libtorch" ,
57
- urls = ["https://download.pytorch.org/libtorch/test/ cu121/libtorch-cxx11-abi-shared-with-deps-2.2.0%2Bcu121.zip" ],
57
+ urls = ["https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.2.0%2Bcu121.zip" ],
58
58
)
59
59
60
60
http_archive (
61
61
name = "libtorch_pre_cxx11_abi" ,
62
62
build_file = "@//third_party/libtorch:BUILD" ,
63
63
strip_prefix = "libtorch" ,
64
- urls = ["https://download.pytorch.org/libtorch/test/ cu121/libtorch-shared-with-deps-2.2.0%2Bcu121.zip" ],
64
+ urls = ["https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.2.0%2Bcu121.zip" ],
65
65
)
66
66
67
67
# Download these tarballs manually from the NVIDIA website
Original file line number Diff line number Diff line change 3
3
TOP_DIR=$( cd $( dirname $0 ) ; pwd) /..
4
4
5
5
if [[ -z " ${USE_CXX11} " ]]; then
6
- BUILD_CMD=" python -m pip wheel . --extra-index-url https://download.pytorch.org/whl/test/cu121 - w dist"
6
+ BUILD_CMD=" python -m pip wheel . -w dist"
7
7
else
8
- BUILD_CMD=" python -m pip wheel . --config-setting=" --build-option=--use-cxx11-abi" --extra-index-url https://download.pytorch.org/whl/test/cu121 - w dist"
8
+ BUILD_CMD=" python -m pip wheel . --config-setting=" --build-option=--use-cxx11-abi" -w dist"
9
9
fi
10
10
11
11
# TensorRT restricts our pip version
Original file line number Diff line number Diff line change 1
1
numpy
2
2
packaging
3
3
pybind11 == 2.6.2
4
- --extra-index-url https://download.pytorch.org/whl/test/ cu121
4
+ --extra-index-url https://download.pytorch.org/whl/cu121
5
5
torch == 2.2.0
6
- torchvision == 0.16.2
6
+ torchvision == 0.17.0
7
7
--extra-index-url https://pypi.nvidia.com
8
8
tensorrt == 8.6.1
9
9
pyyaml
Original file line number Diff line number Diff line change @@ -59,14 +59,14 @@ http_archive(
59
59
name = "libtorch",
60
60
build_file = "@//third_party/libtorch:BUILD",
61
61
strip_prefix = "libtorch",
62
- urls = ["https://download.pytorch.org/libtorch/test/ cu121/libtorch-cxx11-abi-shared-with-deps-2.2.0%2Bcu121.zip"],
62
+ urls = ["https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.2.0%2Bcu121.zip"],
63
63
)
64
64
65
65
http_archive(
66
66
name = "libtorch_pre_cxx11_abi",
67
67
build_file = "@//third_party/libtorch:BUILD",
68
68
strip_prefix = "libtorch",
69
- urls = ["https://download.pytorch.org/libtorch/test/ cu121/libtorch-shared-with-deps-2.2.0%2Bcu121.zip"],
69
+ urls = ["https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.2.0%2Bcu121.zip"],
70
70
)
71
71
72
72
####################################################################################
You can’t perform that action at this time.
0 commit comments