summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/Eltwise_000/test.prototxt
diff options
context:
space:
mode:
Diffstat (limited to 'res/BVLCCaffeTests/Eltwise_000/test.prototxt')
-rw-r--r--res/BVLCCaffeTests/Eltwise_000/test.prototxt20
1 files changed, 20 insertions, 0 deletions
diff --git a/res/BVLCCaffeTests/Eltwise_000/test.prototxt b/res/BVLCCaffeTests/Eltwise_000/test.prototxt
new file mode 100644
index 000000000..09b85c390
--- /dev/null
+++ b/res/BVLCCaffeTests/Eltwise_000/test.prototxt
@@ -0,0 +1,20 @@
+layer {
+ name: "data"
+ type: "Input"
+ top: "lhs"
+ top: "rhs"
+ input_param {
+ shape: { dim: 1 dim: 3 dim: 16 dim: 16 }
+ shape: { dim: 1 dim: 3 dim: 16 dim: 16 }
+ }
+}
+layer {
+ name: "sum"
+ type: "Eltwise"
+ bottom: "lhs"
+ bottom: "rhs"
+ top: "sum"
+ eltwise_param {
+ operation: SUM
+ }
+}