Update XLA commit hash (#343)

This commit is contained in:
charleshofer 2025-04-07 13:29:56 -05:00 committed by GitHub
parent cefb2ef821
commit cf33319af5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,15 +21,15 @@ load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
# curl -L https://github.com/openxla/xla/archive/<git hash>.tar.gz | sha256sum
# and update XLA_SHA256 with the result.
XLA_COMMIT = "75916151739a1174f3ce02efe825fbd19bb61b86"
XLA_SHA256 = "0c047850b06155463f8d961f00522eebacb08f1572c8df43abfc91bb9cfbd1bf"
XLA_COMMIT = "4b5b29974265b8f535e205ee44dbd45b64b0cd89"
XLA_SHA256 = "152d0b78489413b601e8d443fc47dd355ce26fec20e5d7f4a1c13f43ca4cd0da"
def repo():
tf_http_archive(
name = "xla",
sha256 = XLA_SHA256,
strip_prefix = "xla-{commit}".format(commit = XLA_COMMIT),
urls = tf_mirror_urls("https://github.com/openxla/xla/archive/{commit}.tar.gz".format(commit = XLA_COMMIT)),
urls = tf_mirror_urls("https://github.com/ROCm/xla/archive/{commit}.tar.gz".format(commit = XLA_COMMIT)),
)
# For development, one often wants to make changes to the TF repository as well