summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Mul_000/test.recipe
blob: 43ca30dece5049a9465b0bafa604f8f689f7b4e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
operand {
  name: "ifm1"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}
operand {
  name: "ifm2"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}
operation {
  type: "Mul"
  input: "ifm1"
  input: "ifm2"
  output: "ofm"
  mul_options {
    activation: NONE
  }
}
input: "ifm1"
input: "ifm2"
output: "ofm"