Skip to content

Commit 6b98b68

Browse files
authored
Use XLA with include fix (#256)
1 parent d6cf755 commit 6b98b68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

third_party/xla/workspace.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
2121
# curl -L https://github.com/openxla/xla/archive/<git hash>.tar.gz | sha256sum
2222
# and update XLA_SHA256 with the result.
2323

24-
XLA_COMMIT = "2274501a951e52a4fa32d65136f467d35c8950b9"
25-
XLA_SHA256 = "809ebf3ee4e6271d16d73ec2f37a7f61f2b8248767935ade327f60352c459d0b"
24+
XLA_COMMIT = "217a88ec8d4a0b31697e1479a0befb798546eb11"
25+
XLA_SHA256 = "e3b5674e2b1cd485929684ab92dd763cdc62e5ff576efb662331cad5ac000717"
2626

2727
def repo():
2828
tf_http_archive(
2929
name = "xla",
3030
sha256 = XLA_SHA256,
3131
strip_prefix = "xla-{commit}".format(commit = XLA_COMMIT),
32-
urls = tf_mirror_urls("https://github.com/openxla/xla/archive/{commit}.tar.gz".format(commit = XLA_COMMIT)),
32+
urls = tf_mirror_urls("https://github.com/rocm/xla/archive/{commit}.tar.gz".format(commit = XLA_COMMIT)),
3333
)
3434

3535
# For development, one often wants to make changes to the TF repository as well

0 commit comments

Comments
 (0)