From 3a2230de8f615348966125ba94d8be9e6e647adb Mon Sep 17 00:00:00 2001 From: Jiawei Wang Date: Tue, 15 Jun 2021 12:41:40 +0800 Subject: [PATCH] add conv3d prototxt (#33501) * add conv3d prototxt * Update conv3d.pbtxt * Update conv3d.pbtxt --- paddle/fluid/operators/compat/conv3d.pbtxt | 102 +++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 paddle/fluid/operators/compat/conv3d.pbtxt diff --git a/paddle/fluid/operators/compat/conv3d.pbtxt b/paddle/fluid/operators/compat/conv3d.pbtxt new file mode 100644 index 0000000000..51d4c0d8e3 --- /dev/null +++ b/paddle/fluid/operators/compat/conv3d.pbtxt @@ -0,0 +1,102 @@ +type: "conv3d" +def { + inputs { + name: "Input" + } + inputs { + name: "Filter" + } + outputs { + name: "Output" + } + attrs { + name: "strides" + type: INTS + } + attrs { + name: "paddings" + type: INTS + } + attrs { + name: "padding_algorithm" + type: STRING + } + attrs { + name: "groups" + type: INT + } + attrs { + name: "dilations" + type: INTS + } + attrs { + name: "data_format" + type: STRING + } +} +extra { + inputs { + name: "ResidualData" + } + attrs { + name: "is_test" + type: BOOLEAN + } + attrs { + name: "use_cudnn" + type: BOOLEAN + } + attrs { + name: "fuse_relu_before_depthwise_conv" + type: BOOLEAN + } + attrs { + name: "use_mkldnn" + type: BOOLEAN + } + attrs { + name: "use_quantizer" + type: BOOLEAN + } + attrs { + name: "mkldnn_data_type" + type: STRING + } + attrs { + name: "fuse_relu" + type: BOOLEAN + } + attrs { + name: "fuse_activation" + type: STRING + } + attrs { + name: "fuse_alpha" + type: FLOAT + } + attrs { + name: "fuse_beta" + type: FLOAT + } + attrs { + name: "use_addto" + type: BOOLEAN + } + attrs { + name: "fuse_residual_connection" + type: BOOLEAN + } + attrs { + name: "force_fp32_output" + type: BOOLEAN + } + attrs { + name: "workspace_size_MB" + type: INT + } + attrs { + name: "exhaustive_search" + type: BOOLEAN + } +} + -- GitLab