aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/ops/dataset_ops.cc
diff options
context:
space:
mode:
authorGravatar Derek Murray <mrry@google.com>2018-02-07 20:17:11 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-02-07 20:21:21 -0800
commit7e3acec7cdff6175a5af8f824fe1782d7c95a556 (patch)
tree552dedb0454d942ed39b76163978badbe6ffdba3 /tensorflow/core/ops/dataset_ops.cc
parent39e84da541377b6a87846f06cc66f13f670d3e6d (diff)
[tf.data] Move C++ code backing `tf.contrib.data.ignore_errors()` to contrib.
This change moves the `OpKernel` and `DatasetBase` implementations to "tensorflow/contrib/data/kernels", where they are packaged as a custom op library. This demonstrates (and enforces by continuous integration) the ability to build a C++ Dataset implementation in a custom op library. Other contrib Dataset implementations will move in subsequent changes. PiperOrigin-RevId: 184938885
Diffstat (limited to 'tensorflow/core/ops/dataset_ops.cc')
-rw-r--r--tensorflow/core/ops/dataset_ops.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/tensorflow/core/ops/dataset_ops.cc b/tensorflow/core/ops/dataset_ops.cc
index 3c8e9a8a5f..9e98f56c74 100644
--- a/tensorflow/core/ops/dataset_ops.cc
+++ b/tensorflow/core/ops/dataset_ops.cc
@@ -107,13 +107,6 @@ REGISTER_OP("SkipDataset")
.Attr("output_shapes: list(shape) >= 1")
.SetShapeFn(shape_inference::ScalarShape);
-REGISTER_OP("IgnoreErrorsDataset")
- .Input("input_dataset: variant")
- .Output("handle: variant")
- .Attr("output_types: list(type) >= 1")
- .Attr("output_shapes: list(shape) >= 1")
- .SetShapeFn(shape_inference::ScalarShape);
-
REGISTER_OP("BytesProducedStatsDataset")
.Input("input_dataset: variant")
.Input("tag: string")