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