From 8266d57ad759edbdc2fcdea9db90da1336df4e8f Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Mon, 9 Nov 2020 10:18:25 -0800 Subject: [PATCH] Update ops-related pbtxt files. PiperOrigin-RevId: 341432816 Change-Id: Iac76b3fdc7c8a1de3b49255d628d0ded6750ffc8 --- .../ops/compat/ops_history_v2/RiscConv.pbtxt | 54 +++++++++++++++++++ tensorflow/core/ops/ops.pbtxt | 54 +++++++++++++++++++ 2 files changed, 108 insertions(+) create mode 100644 tensorflow/core/ops/compat/ops_history_v2/RiscConv.pbtxt diff --git a/tensorflow/core/ops/compat/ops_history_v2/RiscConv.pbtxt b/tensorflow/core/ops/compat/ops_history_v2/RiscConv.pbtxt new file mode 100644 index 00000000000..9828ec5a949 --- /dev/null +++ b/tensorflow/core/ops/compat/ops_history_v2/RiscConv.pbtxt @@ -0,0 +1,54 @@ +op { + name: "RiscConv" + input_arg { + name: "input" + type_attr: "T" + } + input_arg { + name: "filter" + type_attr: "T" + } + output_arg { + name: "output" + type_attr: "T" + } + attr { + name: "T" + type: "type" + allowed_values { + list { + type: DT_FLOAT + type: DT_DOUBLE + } + } + } + attr { + name: "strides" + type: "list(int)" + } + attr { + name: "data_format" + type: "string" + default_value { + s: "NHWC" + } + allowed_values { + list { + s: "NHWC" + s: "NCHW" + } + } + } + attr { + name: "dilations" + type: "list(int)" + default_value { + list { + i: 1 + i: 1 + i: 1 + i: 1 + } + } + } +} diff --git a/tensorflow/core/ops/ops.pbtxt b/tensorflow/core/ops/ops.pbtxt index 23d3ba8019c..9a3ea84fc18 100644 --- a/tensorflow/core/ops/ops.pbtxt +++ b/tensorflow/core/ops/ops.pbtxt @@ -41345,6 +41345,60 @@ op { is_aggregate: true is_commutative: true } +op { + name: "RiscConv" + input_arg { + name: "input" + type_attr: "T" + } + input_arg { + name: "filter" + type_attr: "T" + } + output_arg { + name: "output" + type_attr: "T" + } + attr { + name: "T" + type: "type" + allowed_values { + list { + type: DT_FLOAT + type: DT_DOUBLE + } + } + } + attr { + name: "strides" + type: "list(int)" + } + attr { + name: "data_format" + type: "string" + default_value { + s: "NHWC" + } + allowed_values { + list { + s: "NHWC" + s: "NCHW" + } + } + } + attr { + name: "dilations" + type: "list(int)" + default_value { + list { + i: 1 + i: 1 + i: 1 + i: 1 + } + } + } +} op { name: "RngReadAndSkip" input_arg {