From d8a8fe1f01aade660837eb1c9fdd734d67d35683 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=B1=84=EC=84=B1=EC=9A=B0/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 9 Aug 2019 14:30:29 +0900 Subject: [PATCH] [res] DepthwiseConv2D network with one placeholder and one constant (#6427) A simple network that has DepthwiseConv2dNative with input(Placeholder) and filter(Const). Signed-off-by: seongwoo --- res/TensorFlowTests/DepthwiseConv2D_001/test.info | 2 + res/TensorFlowTests/DepthwiseConv2D_001/test.pbtxt | 115 +++++++++++++++++++++ 2 files changed, 117 insertions(+) create mode 100644 res/TensorFlowTests/DepthwiseConv2D_001/test.info create mode 100644 res/TensorFlowTests/DepthwiseConv2D_001/test.pbtxt diff --git a/res/TensorFlowTests/DepthwiseConv2D_001/test.info b/res/TensorFlowTests/DepthwiseConv2D_001/test.info new file mode 100644 index 0000000..c175953 --- /dev/null +++ b/res/TensorFlowTests/DepthwiseConv2D_001/test.info @@ -0,0 +1,2 @@ +input, input:0, TF_FLOAT, [1, 4, 4, 3] +output, DepthwiseConv2dNative:0, TF_FLOAT, [1, 3, 3, 6] diff --git a/res/TensorFlowTests/DepthwiseConv2D_001/test.pbtxt b/res/TensorFlowTests/DepthwiseConv2D_001/test.pbtxt new file mode 100644 index 0000000..9a97176 --- /dev/null +++ b/res/TensorFlowTests/DepthwiseConv2D_001/test.pbtxt @@ -0,0 +1,115 @@ +# A simple network that has DepthwiseConv2dNative with input(Placeholder) and filter(Const) +# HOW TO GENERATE: +# import tensorflow as tf +# input = tf.placeholder(tf.float32, shape=[1,4,4,3], name="input") +# filter = tf.constant(1.0, shape=[2,2,3,2], dtype=tf.float32) +# dwconv = tf.nn.depthwise_conv2d_native(input,filter,[1,1,1,1],'VALID') +# tf.get_default_graph().as_graph_def() +node { + name: "input" + op: "Placeholder" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "shape" + value { + shape { + dim { + size: 1 + } + dim { + size: 4 + } + dim { + size: 4 + } + dim { + size: 3 + } + } + } + } +} +node { + name: "Const" + op: "Const" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_FLOAT + tensor_shape { + dim { + size: 2 + } + dim { + size: 2 + } + dim { + size: 3 + } + dim { + size: 2 + } + } + float_val: 1.0 + } + } + } +} +node { + name: "DepthwiseConv2dNative" + op: "DepthwiseConv2dNative" + input: "input" + input: "Const" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "data_format" + value { + s: "NHWC" + } + } + attr { + key: "dilations" + value { + list { + i: 1 + i: 1 + i: 1 + i: 1 + } + } + } + attr { + key: "padding" + value { + s: "VALID" + } + } + attr { + key: "strides" + value { + list { + i: 1 + i: 1 + i: 1 + i: 1 + } + } + } +} -- 2.7.4