Skip to content

Commit 752ddba

Browse files
authored
Add Build Trigger for 2.8-rc1 release (#9425)
1 parent 773ecdf commit 752ddba

File tree

3 files changed

+58
-2
lines changed

3 files changed

+58
-2
lines changed

infra/ansible/config/vars.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cuda_compute_capabilities: 5.2,7.0,7.5,8.0,9.0
77
llvm_debian_repo: bullseye
88
clang_version: 17
99
# PyTorch and PyTorch/XLA wheel versions.
10-
package_version: 2.8.0
10+
package_version: 2.9.0
1111
# If set to true, wheels will be renamed to $WHEEL_NAME-nightly-cp38-cp38-linux_x86_64.whl.
1212
nightly_release: false
1313
# Whether to preinstall libtpu in the PyTorch/XLA wheel. Ignored for GPU build.

infra/tpu-pytorch-releases/artifacts.auto.tfvars

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,62 @@ manual_nightly_builds = [
44

55
manual_versioned_builds = [
66

7+
8+
{
9+
git_tag = "v2.8.0-rc1"
10+
package_version = "2.8.0-rc1"
11+
pytorch_git_rev = "v2.8.0-rc1"
12+
accelerator = "tpu"
13+
python_version = "3.11"
14+
bundle_libtpu = "0"
15+
cxx11_abi = "1"
16+
},
17+
{
18+
git_tag = "v2.8.0-rc1"
19+
package_version = "2.8.0-rc1"
20+
pytorch_git_rev = "v2.8.0-rc1"
21+
accelerator = "tpu"
22+
python_version = "3.12"
23+
bundle_libtpu = "0"
24+
cxx11_abi = "1"
25+
},
26+
{
27+
git_tag = "v2.8.0-rc1"
28+
package_version = "2.8.0-rc1"
29+
pytorch_git_rev = "v2.8.0-rc1"
30+
accelerator = "tpu"
31+
python_version = "3.13"
32+
bundle_libtpu = "0"
33+
cxx11_abi = "1"
34+
},
35+
{
36+
git_tag = "v2.8.0-rc1"
37+
package_version = "2.8.0-rc1"
38+
pytorch_git_rev = "v2.8.0-rc1"
39+
accelerator = "cuda"
40+
cuda_version = "12.6"
41+
python_version = "3.11"
42+
cxx11_abi = "1"
43+
},
44+
{
45+
git_tag = "v2.8.0-rc1"
46+
package_version = "2.8.0-rc1"
47+
pytorch_git_rev = "v2.8.0-rc1"
48+
accelerator = "cuda"
49+
cuda_version = "12.6"
50+
python_version = "3.12"
51+
cxx11_abi = "1"
52+
},
53+
{
54+
git_tag = "v2.8.0-rc1"
55+
package_version = "2.8.0-rc1"
56+
pytorch_git_rev = "v2.8.0-rc1"
57+
accelerator = "cuda"
58+
cuda_version = "12.6"
59+
python_version = "3.13"
60+
cxx11_abi = "1"
61+
},
62+
763
{
864
git_tag = "v2.7.0"
965
package_version = "2.7.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def get_git_head_sha(base_dir):
151151

152152

153153
def get_build_version(xla_git_sha):
154-
version = os.getenv('TORCH_XLA_VERSION', '2.8.0')
154+
version = os.getenv('TORCH_XLA_VERSION', '2.9.0')
155155
if build_util.check_env_flag('GIT_VERSIONED_XLA_BUILD', default='TRUE'):
156156
try:
157157
version += '+git' + xla_git_sha[:7]

0 commit comments

Comments
 (0)