From 205bcc166580c80a63ea69371cc53b70c293c3bf Mon Sep 17 00:00:00 2001 From: huzhiqiang <912790387@qq.com> Date: Mon, 7 Jun 2021 18:50:24 +0800 Subject: [PATCH] add proto txt info for affine_channel op (#33376) --- .../operators/compat/affine_channel.pbtxt | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 paddle/fluid/operators/compat/affine_channel.pbtxt diff --git a/paddle/fluid/operators/compat/affine_channel.pbtxt b/paddle/fluid/operators/compat/affine_channel.pbtxt new file mode 100644 index 0000000000..444fde59a9 --- /dev/null +++ b/paddle/fluid/operators/compat/affine_channel.pbtxt @@ -0,0 +1,41 @@ +type: "affine_channel" +def { + inputs { + name: "X" + } + inputs { + name: "Scale" + } + inputs { + name: "Bias" + } + attrs { + name: "data_layout" + type: STRING + } + outputs { + name: "Out" + } +} +extra { + attrs { + name: "op_role" + type: INT + } + attrs { + name: "op_role_var" + type: STRINGS + } + attrs { + name: "op_namescope" + type: STRING + } + attrs { + name: "op_callstack" + type: STRINGS + } + attrs { + name: "op_device" + type: STRING + } +} -- GitLab