Skip to content

Update the OpenXLA pin #9216

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ new_local_repository(

# To build PyTorch/XLA with a new revison of OpenXLA, update the xla_hash to
# the openxla git commit hash and note the date of the commit.
xla_hash = '37b580d0dd7b52e611430d33424159719e363ffc' # Committed on 2025/5/13.
xla_hash = '30ebb24dd16a31b613623d9f2f513d31914cb6f7' # Committed on 2025/5/19.

http_archive(
name = "xla",
Expand Down
2 changes: 1 addition & 1 deletion torch_xla/csrc/runtime/ifrt_computation_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ std::vector<ComputationClient::ComputationPtr> IfrtComputationClient::Compile(
torch_xla::ConvertHloToStableHlo(instance.computation.mutable_proto(),
&mlir_module);
std::shared_ptr<xla::ifrt::LoadedExecutable> executable =
ConsumeValue(client_->GetDefaultCompiler()->Compile(
ConsumeValue(client_->GetDefaultCompiler()->CompileAndLoad(
std::make_unique<xla::ifrt::HloProgram>(mlir_module),
std::make_unique<xla::ifrt::XlaCompileOptions>(compile_options,
devices_list)));
Expand Down
Loading