summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/Eltwise_000/test.prototxt
blob: 09b85c39035183c3bf5b12c83e5fc3f79937366d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
  }
}