Skip to content

Commit

Permalink
reorder xla_workspace calls
Browse files Browse the repository at this point in the history
  • Loading branch information
mofeing committed Dec 24, 2024
1 parent e7c904a commit fe70319
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,18 @@ load("@jax//third_party/flatbuffers:workspace.bzl", flatbuffers = "repo")
flatbuffers()

load("@xla//:workspace4.bzl", "xla_workspace4")
load("@xla//:workspace3.bzl", "xla_workspace3")
load("@xla//:workspace2.bzl", "xla_workspace2")
load("@xla//:workspace1.bzl", "xla_workspace1")
load("@xla//:workspace0.bzl", "xla_workspace0")

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(
Expand Down

0 comments on commit fe70319

Please sign in to comment.