[enco] Add caffe 007 test (#1319)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Tue, 4 Sep 2018 07:02:00 +0000 (16:02 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Tue, 4 Sep 2018 07:02:00 +0000 (16:02 +0900)
This commit adds caffe 007 test which consists of a simple Max pooling
layer without padding and stride.

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

diff --git a/contrib/enco/test/caffe/007/BUILD b/contrib/enco/test/caffe/007/BUILD
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/007/INFERENCE b/contrib/enco/test/caffe/007/INFERENCE
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/007/test.prototxt b/contrib/enco/test/caffe/007/test.prototxt
new file mode 100644 (file)
index 0000000..8ed0c38
--- /dev/null
@@ -0,0 +1,16 @@
+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
+  }
+}