aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-12-01 15:48:27 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-01 16:08:14 -0800
commit96cfc3b7b8717c0d5381b92d87299367e69d7d90 (patch)
tree32d0634daa155b954130fbbf222ec92cf0c4e9d3
parente824de5ce5c652746a62eb513c0f5ed10a6372a3 (diff)
Update ops-related pbtxt files.
Change: 140788482
-rw-r--r--tensorflow/core/ops/compat/ops_history.v0.pbtxt46
-rw-r--r--tensorflow/core/ops/ops.pbtxt10
2 files changed, 56 insertions, 0 deletions
diff --git a/tensorflow/core/ops/compat/ops_history.v0.pbtxt b/tensorflow/core/ops/compat/ops_history.v0.pbtxt
index 84f58f8551..01fec5ae7f 100644
--- a/tensorflow/core/ops/compat/ops_history.v0.pbtxt
+++ b/tensorflow/core/ops/compat/ops_history.v0.pbtxt
@@ -33317,6 +33317,52 @@ op {
is_stateful: true
}
op {
+ name: "TensorArrayV2"
+ input_arg {
+ name: "size"
+ type: DT_INT32
+ }
+ output_arg {
+ name: "handle"
+ type: DT_STRING
+ }
+ attr {
+ name: "dtype"
+ type: "type"
+ }
+ attr {
+ name: "element_shape"
+ type: "shape"
+ default_value {
+ shape {
+ unknown_rank: true
+ }
+ }
+ }
+ attr {
+ name: "dynamic_size"
+ type: "bool"
+ default_value {
+ b: false
+ }
+ }
+ attr {
+ name: "clear_after_read"
+ type: "bool"
+ default_value {
+ b: true
+ }
+ }
+ attr {
+ name: "tensor_array_name"
+ type: "string"
+ default_value {
+ s: ""
+ }
+ }
+ is_stateful: true
+}
+op {
name: "TensorArrayWrite"
input_arg {
name: "handle"
diff --git a/tensorflow/core/ops/ops.pbtxt b/tensorflow/core/ops/ops.pbtxt
index ff46aa2725..17d486cb08 100644
--- a/tensorflow/core/ops/ops.pbtxt
+++ b/tensorflow/core/ops/ops.pbtxt
@@ -21160,6 +21160,16 @@ op {
description: "The type of the elements on the tensor_array."
}
attr {
+ name: "element_shape"
+ type: "shape"
+ default_value {
+ shape {
+ unknown_rank: true
+ }
+ }
+ description: "The expected shape of an element, if known. Used to\nvalidate the shapes of TensorArray elements. If this shape is not\nfully specified, gathering zero-size TensorArrays is an error."
+ }
+ attr {
name: "dynamic_size"
type: "bool"
default_value {