STT-tensorflow/tensorflow/python/data/experimental/BUILD
Andrew Audibert b0fcb6c18c [tf.data service] Export distribute transformation
PiperOrigin-RevId: 313620607
Change-Id: I4f43f44ac7a8a9b27226b7d63aef374f3c8a178d
2020-05-28 11:18:21 -07:00

19 lines
476 B
Python

package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
py_library(
name = "experimental",
srcs = ["__init__.py"],
srcs_version = "PY2AND3",
deps = [
"//tensorflow/python:util",
"//tensorflow/python/data/experimental/ops:dataset_ops",
"//tensorflow/python/data/experimental/ops:iterator_ops",
"//tensorflow/python/data/experimental/service",
],
)