mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 00:19:58 +01:00
14 lines
469 B
Python
14 lines
469 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", path = "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
|