aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-01-13 13:32:12 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-13 13:45:39 -0800
commitf6d87b8b481819826ca14cab53c4ad4b7f9f4974 (patch)
tree030097ea0a1a6c715716ec85fff85c35ad02d519 /tensorflow/core
parent705cc93336abe74a748c6a6e01759772db4bbdb9 (diff)
Update ops-related pbtxt files.
Change: 144478664
Diffstat (limited to 'tensorflow/core')
-rw-r--r--tensorflow/core/ops/compat/ops_history.v0.pbtxt26
-rw-r--r--tensorflow/core/ops/ops.pbtxt31
2 files changed, 57 insertions, 0 deletions
diff --git a/tensorflow/core/ops/compat/ops_history.v0.pbtxt b/tensorflow/core/ops/compat/ops_history.v0.pbtxt
index b9589d1c6f..d110f0e560 100644
--- a/tensorflow/core/ops/compat/ops_history.v0.pbtxt
+++ b/tensorflow/core/ops/compat/ops_history.v0.pbtxt
@@ -19651,6 +19651,32 @@ op {
is_stateful: true
}
op {
+ name: "ParallelConcat"
+ input_arg {
+ name: "values"
+ type_attr: "T"
+ number_attr: "N"
+ }
+ output_arg {
+ name: "output"
+ type_attr: "T"
+ }
+ attr {
+ name: "N"
+ type: "int"
+ has_minimum: true
+ minimum: 1
+ }
+ attr {
+ name: "T"
+ type: "type"
+ }
+ attr {
+ name: "shape"
+ type: "shape"
+ }
+}
+op {
name: "ParameterizedTruncatedNormal"
input_arg {
name: "shape"
diff --git a/tensorflow/core/ops/ops.pbtxt b/tensorflow/core/ops/ops.pbtxt
index 65ad47e7b7..2ce20134b6 100644
--- a/tensorflow/core/ops/ops.pbtxt
+++ b/tensorflow/core/ops/ops.pbtxt
@@ -11831,6 +11831,37 @@ op {
is_stateful: true
}
op {
+ name: "ParallelConcat"
+ input_arg {
+ name: "values"
+ description: "Tensors to be concatenated. All must have size 1 in the first dimension\nand same shape."
+ type_attr: "T"
+ number_attr: "N"
+ }
+ output_arg {
+ name: "output"
+ description: "The concatenated tensor."
+ type_attr: "T"
+ }
+ attr {
+ name: "N"
+ type: "int"
+ has_minimum: true
+ minimum: 1
+ }
+ attr {
+ name: "T"
+ type: "type"
+ }
+ attr {
+ name: "shape"
+ type: "shape"
+ description: "the final shape of the result; should be equal to the shapes of any input\nbut with the number of input values in the first dimension."
+ }
+ summary: "Concatenates a list of `N` tensors along the first dimension."
+ description: "The input tensors are all required to have size 1 in the first dimension.\n\nFor example:\n\n```prettyprint\n# \'x\' is [[1, 4]]\n# \'y\' is [[2, 5]]\n# \'z\' is [[3, 6]]\nparallel_concat([x, y, z]) => [[1, 4], [2, 5], [3, 6]] # Pack along first dim.\n```\n\nThe difference between concat and parallel_concat is that concat requires all\nof the inputs be computed before the operation will begin but doesn\'t require\nthat the input shapes be known during graph construction. Parallel concat\nwill copy pieces of the input into the output as they become available, in\nsome situations this can provide a performance benefit."
+}
+op {
name: "ParameterizedTruncatedNormal"
input_arg {
name: "shape"