mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 11:56:07 +00:00

This is a necessary first step before adding DUCC support to XLA, otherwise the JAX tests in the XLA repo pull from JAX's copy, which has slightly different build rules. PiperOrigin-RevId: 576880208
29 lines
724 B
Python
29 lines
724 B
Python
# The XLA commit is determined by third_party/xla/workspace.bzl.
|
|
load("//third_party/xla:workspace.bzl", jax_xla_workspace = "repo")
|
|
jax_xla_workspace()
|
|
|
|
load("@xla//:workspace4.bzl", "xla_workspace4")
|
|
xla_workspace4()
|
|
|
|
load("@xla//:workspace3.bzl", "xla_workspace3")
|
|
xla_workspace3()
|
|
|
|
load("@xla//:workspace2.bzl", "xla_workspace2")
|
|
xla_workspace2()
|
|
|
|
load("@xla//:workspace1.bzl", "xla_workspace1")
|
|
xla_workspace1()
|
|
|
|
load("@xla//:workspace0.bzl", "xla_workspace0")
|
|
xla_workspace0()
|
|
|
|
load("//third_party/flatbuffers:workspace.bzl", flatbuffers = "repo")
|
|
flatbuffers()
|
|
|
|
load("//third_party/robin_map:workspace.bzl", robin_map = "repo")
|
|
robin_map()
|
|
|
|
load("//third_party/nanobind:workspace.bzl", nanobind = "repo")
|
|
nanobind()
|
|
|