summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/Concat_000/test.prototxt
diff options
context:
space:
mode:
Diffstat (limited to 'res/BVLCCaffeTests/Concat_000/test.prototxt')
-rw-r--r--res/BVLCCaffeTests/Concat_000/test.prototxt23
1 files changed, 23 insertions, 0 deletions
diff --git a/res/BVLCCaffeTests/Concat_000/test.prototxt b/res/BVLCCaffeTests/Concat_000/test.prototxt
new file mode 100644
index 000000000..0c2ee899c
--- /dev/null
+++ b/res/BVLCCaffeTests/Concat_000/test.prototxt
@@ -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"
+}