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.
|
|
|
|
#
|
|
|
|
# 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")
|
2021-01-18 19:01:52 +00:00
|
|
|
|
2020-12-03 07:52:23 +00:00
|
|
|
workspace()
|
2021-01-18 19:01:52 +00:00
|
|
|
|
2020-12-03 07:52:23 +00:00
|
|
|
load("@//tensorflow:workspace2.bzl", "workspace")
|
2021-01-18 19:01:52 +00:00
|
|
|
|
2020-12-03 07:52:23 +00:00
|
|
|
workspace()
|
2018-11-30 19:11:23 +00:00
|
|
|
|
2021-01-18 19:01:52 +00:00
|
|
|
load("@//tensorflow:workspace1.bzl", "workspace")
|
2017-02-04 01:13:49 +00:00
|
|
|
|
2021-01-18 19:01:52 +00:00
|
|
|
workspace()
|
2019-06-19 11:14:12 +00:00
|
|
|
|
2021-01-18 19:01:52 +00:00
|
|
|
load("@//tensorflow:workspace0.bzl", "workspace")
|
2020-12-02 05:04:15 +00:00
|
|
|
|
2021-01-18 19:01:52 +00:00
|
|
|
workspace()
|