2016-05-26 19:05:13 +00:00
|
|
|
workspace(name = "org_tensorflow")
|
|
|
|
|
2020-12-03 07:52:23 +00:00
|
|
|
# Initialize the TensorFlow repository and all dependencies.
|
|
|
|
#
|
2021-02-01 19:59:46 +00:00
|
|
|
# The cascade of load() statements and tf_workspace?() calls works around the
|
2020-12-03 07:52:23 +00:00
|
|
|
# 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.
|
2021-02-01 19:59:46 +00:00
|
|
|
load("@//tensorflow:workspace3.bzl", "tf_workspace3")
|
2021-01-18 19:01:52 +00:00
|
|
|
|
2021-02-01 19:59:46 +00:00
|
|
|
tf_workspace3()
|
2021-01-18 19:01:52 +00:00
|
|
|
|
2021-02-01 19:59:46 +00:00
|
|
|
load("@//tensorflow:workspace2.bzl", "tf_workspace2")
|
2021-01-18 19:01:52 +00:00
|
|
|
|
2021-02-01 19:59:46 +00:00
|
|
|
tf_workspace2()
|
2018-11-30 19:11:23 +00:00
|
|
|
|
2021-02-01 19:59:46 +00:00
|
|
|
load("@//tensorflow:workspace1.bzl", "tf_workspace1")
|
2017-02-04 01:13:49 +00:00
|
|
|
|
2021-02-01 19:59:46 +00:00
|
|
|
tf_workspace1()
|
2019-06-19 11:14:12 +00:00
|
|
|
|
2021-02-01 19:59:46 +00:00
|
|
|
load("@//tensorflow:workspace0.bzl", "tf_workspace0")
|
2020-12-02 05:04:15 +00:00
|
|
|
|
2021-02-01 19:59:46 +00:00
|
|
|
tf_workspace0()
|