aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-04-09 19:19:38 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-09 19:21:51 -0700
commite3e0af4bd9b1d7a4628a5a4d6901a2d8529cfda5 (patch)
tree113696856d9046599cc49c7141cf445dfce78782
parentd09bd1b06c4f4c8efad15c1e77c8c54710ccf077 (diff)
Update ops-related pbtxt files.
PiperOrigin-RevId: 192226063
-rw-r--r--tensorflow/core/ops/compat/ops_history.v1.pbtxt59
-rw-r--r--tensorflow/core/ops/ops.pbtxt8
2 files changed, 67 insertions, 0 deletions
diff --git a/tensorflow/core/ops/compat/ops_history.v1.pbtxt b/tensorflow/core/ops/compat/ops_history.v1.pbtxt
index 026bfa89cf..fe4b7a7be0 100644
--- a/tensorflow/core/ops/compat/ops_history.v1.pbtxt
+++ b/tensorflow/core/ops/compat/ops_history.v1.pbtxt
@@ -16408,6 +16408,65 @@ op {
}
}
op {
+ name: "DecodeCSV"
+ input_arg {
+ name: "records"
+ type: DT_STRING
+ }
+ input_arg {
+ name: "record_defaults"
+ type_list_attr: "OUT_TYPE"
+ }
+ output_arg {
+ name: "output"
+ type_list_attr: "OUT_TYPE"
+ }
+ attr {
+ name: "OUT_TYPE"
+ type: "list(type)"
+ has_minimum: true
+ minimum: 1
+ allowed_values {
+ list {
+ type: DT_FLOAT
+ type: DT_DOUBLE
+ type: DT_INT32
+ type: DT_INT64
+ type: DT_STRING
+ }
+ }
+ }
+ attr {
+ name: "field_delim"
+ type: "string"
+ default_value {
+ s: ","
+ }
+ }
+ attr {
+ name: "use_quote_delim"
+ type: "bool"
+ default_value {
+ b: true
+ }
+ }
+ attr {
+ name: "na_value"
+ type: "string"
+ default_value {
+ s: ""
+ }
+ }
+ attr {
+ name: "select_cols"
+ type: "list(int)"
+ default_value {
+ list {
+ }
+ }
+ }
+}
+op {
name: "DecodeCompressed"
input_arg {
name: "bytes"
diff --git a/tensorflow/core/ops/ops.pbtxt b/tensorflow/core/ops/ops.pbtxt
index b61a3b0e64..9950388357 100644
--- a/tensorflow/core/ops/ops.pbtxt
+++ b/tensorflow/core/ops/ops.pbtxt
@@ -7361,6 +7361,14 @@ op {
s: ""
}
}
+ attr {
+ name: "select_cols"
+ type: "list(int)"
+ default_value {
+ list {
+ }
+ }
+ }
}
op {
name: "DecodeCompressed"