2025-06-23 09:13:43 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
|
|
|
|
|
|
def repo():
|
|
|
|
|
git_repository(
|
|
|
|
|
name = "xla",
|
|
|
|
|
remote = "https://github.com/openxla/xla.git",
|
2025-08-12 13:32:18 +00:00
|
|
|
commit = "b3fbfeeb076f2b536897180f4a274680ed9d52eb",
|
2025-06-23 09:13:43 +00:00
|
|
|
patch_args = ["-p1"],
|
|
|
|
|
patches = [
|
2025-08-12 13:32:18 +00:00
|
|
|
# patches live in the patches directory
|
2025-06-23 09:13:43 +00:00
|
|
|
],
|
|
|
|
|
)
|