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

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

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