aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/ops/ops.pbtxt
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-08-01 23:18:03 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-01 23:21:39 -0700
commitfc8118a853c26f0773145f2f1a3fba2fc968ea73 (patch)
tree7efe824669f3d87fa48e775d13d2a0fb6e9c005e /tensorflow/core/ops/ops.pbtxt
parent1dc4c5b6f5829c4b8ef7d67f41735e8a0ce9d59a (diff)
Update ops-related pbtxt files.
PiperOrigin-RevId: 207051885
Diffstat (limited to 'tensorflow/core/ops/ops.pbtxt')
-rw-r--r--tensorflow/core/ops/ops.pbtxt82
1 files changed, 82 insertions, 0 deletions
diff --git a/tensorflow/core/ops/ops.pbtxt b/tensorflow/core/ops/ops.pbtxt
index 03404546de..ef167a2e73 100644
--- a/tensorflow/core/ops/ops.pbtxt
+++ b/tensorflow/core/ops/ops.pbtxt
@@ -13291,6 +13291,30 @@ op {
is_stateful: true
}
op {
+ name: "IteratorGetNextAsOptional"
+ input_arg {
+ name: "iterator"
+ type: DT_RESOURCE
+ }
+ output_arg {
+ name: "optional"
+ type: DT_VARIANT
+ }
+ attr {
+ name: "output_types"
+ type: "list(type)"
+ has_minimum: true
+ minimum: 1
+ }
+ attr {
+ name: "output_shapes"
+ type: "list(shape)"
+ has_minimum: true
+ minimum: 1
+ }
+ is_stateful: true
+}
+op {
name: "IteratorGetNextSync"
input_arg {
name: "iterator"
@@ -17300,6 +17324,64 @@ op {
}
}
op {
+ name: "OptionalFromValue"
+ input_arg {
+ name: "components"
+ type_list_attr: "Toutput_types"
+ }
+ output_arg {
+ name: "optional"
+ type: DT_VARIANT
+ }
+ attr {
+ name: "Toutput_types"
+ type: "list(type)"
+ has_minimum: true
+ minimum: 1
+ }
+}
+op {
+ name: "OptionalGetValue"
+ input_arg {
+ name: "optional"
+ type: DT_VARIANT
+ }
+ output_arg {
+ name: "components"
+ type_list_attr: "output_types"
+ }
+ attr {
+ name: "output_types"
+ type: "list(type)"
+ has_minimum: true
+ minimum: 1
+ }
+ attr {
+ name: "output_shapes"
+ type: "list(shape)"
+ has_minimum: true
+ minimum: 1
+ }
+}
+op {
+ name: "OptionalHasValue"
+ input_arg {
+ name: "optional"
+ type: DT_VARIANT
+ }
+ output_arg {
+ name: "has_value"
+ type: DT_BOOL
+ }
+}
+op {
+ name: "OptionalNone"
+ output_arg {
+ name: "optional"
+ type: DT_VARIANT
+ }
+}
+op {
name: "OrderedMapClear"
attr {
name: "capacity"