2016-05-26 11:05:13 -08:00
|
|
|
workspace(name = "org_tensorflow")
|
|
|
|
|
|
2020-12-02 23:52:23 -08:00
|
|
|
# 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.
|
|
|
|
|
load("@//tensorflow:workspace3.bzl", "workspace")
|
|
|
|
|
workspace()
|
|
|
|
|
load("@//tensorflow:workspace2.bzl", "workspace")
|
|
|
|
|
workspace()
|
|
|
|
|
load("@//tensorflow:workspace1.bzl", "workspace")
|
|
|
|
|
workspace()
|
|
|
|
|
load("@//tensorflow:workspace0.bzl", "workspace")
|
|
|
|
|
workspace()
|
2018-11-30 11:11:23 -08:00
|
|
|
|
2017-02-03 17:13:49 -08:00
|
|
|
|
2019-06-19 04:14:12 -07:00
|
|
|
|
2020-12-01 21:04:15 -08:00
|
|
|
|