Skip to content
Open
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
4 changes: 2 additions & 2 deletions third_party/xla/revision.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
# and update XLA_SHA256 with the result.

# buildifier: disable=module-docstring
XLA_COMMIT = "9f150f6b75c08d6ea7b97697c4f393f1a0eb6121"
XLA_SHA256 = "523d23e8ea0d16c6134be49fbd0b25848ee3f1c00821e0a91207327dd3dc71cb"
XLA_COMMIT = "e7c898a5893cbfc7d00ca5c1fcd43b53fd4a3b30"
XLA_SHA256 = "056da8d9ce4f4f503e446eff0b346bcae37aba719aa87a437783e634d12e9851"
4 changes: 2 additions & 2 deletions third_party/xla/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def repo():
name = "xla",
sha256 = XLA_SHA256,
type = "tar.gz",
strip_prefix = "openxla-xla-{commit}".format(commit = XLA_COMMIT[:7]),
strip_prefix = "xla-{commit}".format(commit = XLA_COMMIT),
# We use an automated tool to update the revision.bzl file. GitHub prohibits the crawling of
# web links (`/archive/`) links so we use the GitHub API endpoint to get the tarball
# instead.
urls = tf_mirror_urls("https://api.github.com/repos/openxla/xla/tarball/{commit}".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
Expand Down