[enco] Symmetrically padded convolution test (#1274)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Mon, 3 Sep 2018 01:10:01 +0000 (10:10 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 3 Sep 2018 01:10:01 +0000 (10:10 +0900)
This commit adds a 003 test which includes symmetrically padded
convolution layer.

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

diff --git a/contrib/enco/test/caffe/003/BUILD b/contrib/enco/test/caffe/003/BUILD
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/003/INFERENCE b/contrib/enco/test/caffe/003/INFERENCE
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/003/test.prototxt b/contrib/enco/test/caffe/003/test.prototxt
new file mode 100644 (file)
index 0000000..7cd59be
--- /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: "conv"
+  type: "Convolution"
+  bottom: "data"
+  top: "conv"
+  convolution_param {
+    bias_term: false
+    num_output: 2
+    pad: 1
+    kernel_size: 3
+    weight_filler {
+      type: "gaussian"
+      std: 0.01
+    }
+  }
+}