STT-tensorflow/tensorflow/python/distribute/experimental/BUILD
A. Unique TensorFlower 034633f23b PY2 removal cleanup
PiperOrigin-RevId: 352106691
Change-Id: I382d53c64f0d29da430b8cb6d2395a2cb281509e
2021-01-15 16:48:57 -08:00

21 lines
526 B
Python

package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
py_library(
name = "experimental",
srcs = [
"__init__.py",
],
srcs_version = "PY3",
deps = [
"//tensorflow/python/distribute:central_storage_strategy",
"//tensorflow/python/distribute:collective_all_reduce_strategy",
"//tensorflow/python/distribute:parameter_server_strategy",
"//tensorflow/python/distribute:tpu_strategy",
],
)