[enco] Add caffe 012 test (#1380)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Thu, 6 Sep 2018 06:43:08 +0000 (15:43 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Thu, 6 Sep 2018 06:43:08 +0000 (15:43 +0900)
This commit introduces caffe 012 test which includes a MAX pooling layer
with padding.

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

diff --git a/contrib/enco/test/caffe/012/BUILD b/contrib/enco/test/caffe/012/BUILD
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/012/INFERENCE b/contrib/enco/test/caffe/012/INFERENCE
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/012/test.prototxt b/contrib/enco/test/caffe/012/test.prototxt
new file mode 100644 (file)
index 0000000..533a01c
--- /dev/null
@@ -0,0 +1,17 @@
+layer {
+  name: "data"
+  type: "Input"
+  top: "data"
+  input_param { shape: { dim: 1 dim: 3 dim: 16 dim: 16 } }
+}
+layer {
+  name: "pool"
+  type: "Pooling"
+  bottom: "data"
+  top: "pool"
+  pooling_param {
+    pool: MAX
+    kernel_size: 3
+    pad: 1
+  }
+}