Skip to content

Commit 503f828

Browse files
authored
Update pins (#9330)
1 parent 3bc9ece commit 503f828

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.bazelrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ build --action_env=CC=gcc
3232
build --action_env=CXX=g++
3333
build --spawn_strategy=standalone
3434

35+
# TODO(https://github.com/pytorch/xla/issues/9336): Enable bzlmod.
36+
build --noenable_bzlmod
37+
3538
###########################################################################
3639

3740
build:clang --action_env=CC=/usr/bin/clang-17
@@ -225,9 +228,6 @@ build --noincompatible_remove_legacy_whole_archive
225228
# cc_shared_library ensures no library is linked statically more than once.
226229
build --experimental_link_static_libraries_once=false
227230

228-
# On linux, don't cross compile by default
229-
build:linux --distinct_host_configuration=false
230-
231231
# Do not risk cache corruption. See:
232232
# https://github.com/bazelbuild/bazel/issues/3360
233233
build:linux --experimental_guard_against_concurrent_changes

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.5.0
1+
7.4.1

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ new_local_repository(
4646

4747
# To build PyTorch/XLA with a new revison of OpenXLA, update the xla_hash to
4848
# the openxla git commit hash and note the date of the commit.
49-
xla_hash = 'd4576615b3bd3644567da60202faf19b485b52f9' # Committed on 2025-06-05.
49+
xla_hash = '9ac36592456e7be0d66506be75fbdacc90dd4e91' # Committed on 2025-06-11.
5050

5151
http_archive(
5252
name = "xla",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@
109109
USE_NIGHTLY = True # Whether to use nightly or stable libtpu and JAX.
110110

111111
_libtpu_version = '0.0.17'
112-
_libtpu_date = '20250605'
112+
_libtpu_date = '20250611'
113113

114114
_jax_version = '0.6.2'
115115
_jaxlib_version = '0.6.2'
116-
_jax_date = '20250605' # Date for jax and jaxlib.
116+
_jax_date = '20250611' # Date for jax and jaxlib.
117117

118118
if USE_NIGHTLY:
119119
_libtpu_version += f".dev{_libtpu_date}"

0 commit comments

Comments
 (0)