[enco] Add caffe 016 test (#1554)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 19 Sep 2018 04:16:14 +0000 (13:16 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Wed, 19 Sep 2018 04:16:14 +0000 (13:16 +0900)
This commit adds caffe 016 test which includes a group convolution layer
(which simulates depthwise convolution).

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/enco/test/caffe/016/BUILD [new file with mode: 0644]
contrib/enco/test/caffe/016/INFERENCE [new file with mode: 0644]
contrib/enco/test/caffe/016/test.prototxt [new file with mode: 0644]

diff --git a/contrib/enco/test/caffe/016/BUILD b/contrib/enco/test/caffe/016/BUILD
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/016/INFERENCE b/contrib/enco/test/caffe/016/INFERENCE
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/016/test.prototxt b/contrib/enco/test/caffe/016/test.prototxt
new file mode 100644 (file)
index 0000000..f50a007
--- /dev/null
@@ -0,0 +1,24 @@
+layer {
+  name: "data"
+  type: "Input"
+  top: "data"
+  input_param {
+    shape: { dim: 1 dim: 3 dim: 16 dim: 16 }
+  }
+}
+layer {
+  name: "dconv"
+  type: "Convolution"
+  bottom: "data"
+  top: "dconv"
+  convolution_param {
+    group: 3
+    num_output: 3
+    bias_term: false
+    kernel_size: 3
+    weight_filler {
+      type: "gaussian"
+      std: 0.01
+    }
+  }
+}