STT-tensorflow/tf/WORKSPACE
Mihai Maruseac 06923bb4fe initial
2021-01-21 09:06:36 -08:00

29 lines
766 B
Python

workspace(name = "org_tensorflow")
# Initialize the TensorFlow repository and all dependencies.
#
# The cascade of load() statements and workspace() calls works around the
# restriction that load() statements need to be at the top of .bzl files.
# E.g. we can not retrieve a new repository with http_archive and then load()
# a macro from that repository in the same file.
# TODO(mihaimaruseac): Rename `workspace*` to signal what they contain
load("@//tensorflow:workspace3.bzl", "workspace")
workspace()
load("@//tensorflow:workspace2.bzl", "workspace")
workspace()
load("@//tensorflow:setup_llvm.bzl", "setup_llvm")
setup_llvm()
load("@//tensorflow:workspace1.bzl", "workspace")
workspace()
load("@//tensorflow:workspace0.bzl", "workspace")
workspace()