mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
0820557105
Right now this is a noop, but this enables a future change to move tf_runtime to refer to XLA as `@xla` rather than `@local_xla`, and similar for TSL. PiperOrigin-RevId: 625763425
14 lines
472 B
Python
14 lines
472 B
Python
"""TensorFlow workspace initialization. Consult the WORKSPACE on how to use it."""
|
|
|
|
load("//third_party:repo.bzl", "tf_vendored")
|
|
|
|
# buildifier: disable=function-docstring
|
|
# buildifier: disable=unnamed-macro
|
|
def workspace():
|
|
# Declares @tsl
|
|
tf_vendored(name = "tsl", relpath = "third_party/tsl")
|
|
|
|
# Alias so it can be loaded without assigning to a different symbol to prevent
|
|
# shadowing previous loads and trigger a buildifier warning.
|
|
xla_workspace4 = workspace
|