[enco] Add caffe 014 test (#1415)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Mon, 10 Sep 2018 00:38:21 +0000 (09:38 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 10 Sep 2018 00:38:21 +0000 (09:38 +0900)
This commit introduces caffe 014 testcase for concat layer.

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

diff --git a/contrib/enco/test/caffe/014/BUILD b/contrib/enco/test/caffe/014/BUILD
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/014/INFERENCE b/contrib/enco/test/caffe/014/INFERENCE
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/014/test.prototxt b/contrib/enco/test/caffe/014/test.prototxt
new file mode 100644 (file)
index 0000000..0c2ee89
--- /dev/null
@@ -0,0 +1,23 @@
+layer {
+  name: "data"
+  type: "Input"
+  top: "data1"
+  top: "data2"
+  top: "data3"
+  top: "data4"
+  input_param {
+    shape: { dim: 1 dim: 1 dim: 4 dim: 4 }
+    shape: { dim: 1 dim: 2 dim: 4 dim: 4 }
+    shape: { dim: 1 dim: 3 dim: 4 dim: 4 }
+    shape: { dim: 1 dim: 4 dim: 4 dim: 4 }
+  }
+}
+layer {
+  name: "concat"
+  type: "Concat"
+  bottom: "data1"
+  bottom: "data2"
+  bottom: "data3"
+  bottom: "data4"
+  top: "concat"
+}