aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-01-17 14:17:34 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-17 14:36:03 -0800
commit511a753e8ddb19ba6ee25cac226b071a176dad58 (patch)
tree3f68435c918e81f8aa8e4f00abaae026a383889e /tensorflow
parentf8d75baaf4c92e76837de6bb64adccf8127a21d6 (diff)
Update ops-related pbtxt files.
Change: 144754803
Diffstat (limited to 'tensorflow')
-rw-r--r--tensorflow/core/ops/compat/ops_history.v0.pbtxt47
-rw-r--r--tensorflow/core/ops/ops.pbtxt55
2 files changed, 102 insertions, 0 deletions
diff --git a/tensorflow/core/ops/compat/ops_history.v0.pbtxt b/tensorflow/core/ops/compat/ops_history.v0.pbtxt
index cfb7504664..49297ae409 100644
--- a/tensorflow/core/ops/compat/ops_history.v0.pbtxt
+++ b/tensorflow/core/ops/compat/ops_history.v0.pbtxt
@@ -23219,6 +23219,53 @@ op {
}
}
op {
+ name: "RecordInput"
+ output_arg {
+ name: "records"
+ type: DT_STRING
+ }
+ attr {
+ name: "file_pattern"
+ type: "string"
+ }
+ attr {
+ name: "file_random_seed"
+ type: "int"
+ default_value {
+ i: 301
+ }
+ }
+ attr {
+ name: "file_shuffle_shift_ratio"
+ type: "float"
+ default_value {
+ f: 0
+ }
+ }
+ attr {
+ name: "file_buffer_size"
+ type: "int"
+ default_value {
+ i: 10000
+ }
+ }
+ attr {
+ name: "file_parallelism"
+ type: "int"
+ default_value {
+ i: 16
+ }
+ }
+ attr {
+ name: "batch_size"
+ type: "int"
+ default_value {
+ i: 32
+ }
+ }
+ is_stateful: true
+}
+op {
name: "ReduceJoin"
input_arg {
name: "inputs"
diff --git a/tensorflow/core/ops/ops.pbtxt b/tensorflow/core/ops/ops.pbtxt
index e631c289c6..44a9d7c9ad 100644
--- a/tensorflow/core/ops/ops.pbtxt
+++ b/tensorflow/core/ops/ops.pbtxt
@@ -15028,6 +15028,61 @@ op {
description: "Specifically, `grad = -dy * y*y`, where `y = 1/x`, and `dy`\nis the corresponding input gradient."
}
op {
+ name: "RecordInput"
+ output_arg {
+ name: "records"
+ description: "A tensor of shape [batch_size]."
+ type: DT_STRING
+ }
+ attr {
+ name: "file_pattern"
+ type: "string"
+ description: "Glob pattern for the data files."
+ }
+ attr {
+ name: "file_random_seed"
+ type: "int"
+ default_value {
+ i: 301
+ }
+ description: "Random seeds used to produce randomized records."
+ }
+ attr {
+ name: "file_shuffle_shift_ratio"
+ type: "float"
+ default_value {
+ f: 0
+ }
+ description: "Shifts the list of files after the list is randomly\nshuffled."
+ }
+ attr {
+ name: "file_buffer_size"
+ type: "int"
+ default_value {
+ i: 10000
+ }
+ description: "The randomization shuffling buffer."
+ }
+ attr {
+ name: "file_parallelism"
+ type: "int"
+ default_value {
+ i: 16
+ }
+ description: "How many sstables are opened and concurrently iterated over."
+ }
+ attr {
+ name: "batch_size"
+ type: "int"
+ default_value {
+ i: 32
+ }
+ description: "The batch size."
+ }
+ summary: "Emits randomized records."
+ is_stateful: true
+}
+op {
name: "ReduceJoin"
input_arg {
name: "inputs"