File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ new_local_repository(
46
46
47
47
# To build PyTorch/XLA with a new revison of OpenXLA, update the xla_hash to
48
48
# 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 .
50
50
51
51
http_archive (
52
52
name = "xla" ,
Original file line number Diff line number Diff line change 108
108
109
109
USE_NIGHTLY = True # Whether to use nightly or stable libtpu and JAX.
110
110
111
- _libtpu_version = '0.0.16 '
112
- _libtpu_date = '20250530 '
111
+ _libtpu_version = '0.0.17 '
112
+ _libtpu_date = '20250605 '
113
113
114
114
_jax_version = '0.6.1'
115
115
_jaxlib_version = '0.6.1'
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ InitializePjRt(const std::string& device_type) {
129
129
TF_VLOG (1 ) << " Initializing PjRt CPU client..." ;
130
130
bool async = sys_util::GetEnvBool (env::kEnvPjrtAsyncCpuClient , true );
131
131
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 ());
133
133
} else if (device_type == " TPU" ) {
134
134
TF_VLOG (1 ) << " Initializing TFRT TPU client..." ;
135
135
// Init the absl logging to avoid the log spam.
You can’t perform that action at this time.
0 commit comments