aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/data/python/ops/BUILD
diff options
context:
space:
mode:
authorGravatar Andrew Selle <aselle@andyselle.com>2017-11-10 17:31:52 -0800
committerGravatar Andrew Selle <aselle@andyselle.com>2017-11-10 17:31:52 -0800
commit4d165c75c3880c20d698f5ba95c8d16ecc93cea7 (patch)
tree6a47c4218c503841af0f975c49e3d36e7f510bc7 /tensorflow/contrib/data/python/ops/BUILD
parent054b515feec0a3fca4cfb1f29adbf423c9027c3a (diff)
parenteabee43e39186d91956277a4fc8b0dd566a68e3b (diff)
Merge remote-tracking branch 'staging/master' into pushsync
Diffstat (limited to 'tensorflow/contrib/data/python/ops/BUILD')
-rw-r--r--tensorflow/contrib/data/python/ops/BUILD40
1 files changed, 14 insertions, 26 deletions
diff --git a/tensorflow/contrib/data/python/ops/BUILD b/tensorflow/contrib/data/python/ops/BUILD
index 727c5d1c38..1b81cf5be9 100644
--- a/tensorflow/contrib/data/python/ops/BUILD
+++ b/tensorflow/contrib/data/python/ops/BUILD
@@ -12,6 +12,20 @@ load(
load("//tensorflow:tensorflow.bzl", "tf_custom_op_py_library")
py_library(
+ name = "dataset_ops",
+ srcs = [
+ "dataset_ops.py",
+ ],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":transformation_ops",
+ "//tensorflow/python:util",
+ "//tensorflow/python/data/ops:dataset_ops",
+ "//tensorflow/python/data/util:nest",
+ ],
+)
+
+py_library(
name = "iterator_ops",
srcs = [
"iterator_ops.py",
@@ -59,7 +73,6 @@ py_library(
],
srcs_version = "PY2AND3",
deps = [
- ":gen_dataset_ops",
"//tensorflow/python:array_ops",
"//tensorflow/python:control_flow_ops",
"//tensorflow/python:dataset_ops_gen",
@@ -115,31 +128,6 @@ tf_custom_op_py_library(
],
)
-tf_gen_op_wrapper_py(
- name = "gen_dataset_ops",
- out = "gen_dataset_ops.py",
- deps = ["//tensorflow/contrib/data:dataset_ops_op_lib"],
-)
-
-tf_custom_op_py_library(
- name = "dataset_ops",
- srcs = ["dataset_ops.py"],
- dso = ["//tensorflow/contrib/data:_dataset_ops.so"],
- kernels = [
- "//tensorflow/contrib/data:dataset_ops_op_lib",
- ],
- srcs_version = "PY2AND3",
- deps = [
- ":gen_dataset_ops",
- ":transformation_ops",
- "//tensorflow/contrib/util:util_py",
- "//tensorflow/python:platform",
- "//tensorflow/python:util",
- "//tensorflow/python/data/ops:dataset_ops",
- "//tensorflow/python/data/util:nest",
- ],
-)
-
filegroup(
name = "all_files",
srcs = glob(