Skip to content

Commit 01072eb

Browse files
authored
Pin update 06052025 (#9299)
1 parent 70de568 commit 01072eb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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 = '2087703fd6b6476e773bd45d6e5b9efb7b7c153e' # Committed on 2025-05-30.
49+
xla_hash = 'd4576615b3bd3644567da60202faf19b485b52f9' # Committed on 2025-06-05.
5050

5151
http_archive(
5252
name = "xla",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@
108108

109109
USE_NIGHTLY = True # Whether to use nightly or stable libtpu and JAX.
110110

111-
_libtpu_version = '0.0.16'
112-
_libtpu_date = '20250530'
111+
_libtpu_version = '0.0.17'
112+
_libtpu_date = '20250605'
113113

114114
_jax_version = '0.6.1'
115115
_jaxlib_version = '0.6.1'

torch_xla/csrc/runtime/pjrt_registry.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ InitializePjRt(const std::string& device_type) {
129129
TF_VLOG(1) << "Initializing PjRt CPU client...";
130130
bool async = sys_util::GetEnvBool(env::kEnvPjrtAsyncCpuClient, true);
131131
int cpu_device_count = sys_util::GetEnvInt(env::kEnvNumCpu, 1);
132-
client = std::move(xla::GetTfrtCpuClient(async, cpu_device_count).value());
132+
client = std::move(xla::GetPjRtCpuClient(async, cpu_device_count).value());
133133
} else if (device_type == "TPU") {
134134
TF_VLOG(1) << "Initializing TFRT TPU client...";
135135
// Init the absl logging to avoid the log spam.

0 commit comments

Comments
 (0)