summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/Eltwise_001/test.prototxt
blob: 3eef071f9ee4cf83bc485d4d75f559a457e74384 (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: "prod"
  type: "Eltwise"
  bottom: "lhs"
  bottom: "rhs"
  top: "prod"
  eltwise_param {
    operation: PROD
  }
}