summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Sub_001/test.recipe
blob: 09f46e4f6382471df4bc2c4364619360e226cc93 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
operand {
  name: "ifm1"
  type: FLOAT32
  shape { dim: 1 dim: 5 dim:2 dim:3 }
}
operand {
  name: "ifm2"
  type: FLOAT32
  shape { dim: 1 dim: 5 dim:2 dim:3 }
}
operand {
  name: "ofm1"
  type: FLOAT32
  shape { dim: 1 dim: 5 dim:2 dim:3 }
}
operand {
  name: "ofm2"
  type: FLOAT32
  shape { dim: 1 dim: 5 dim:2 dim:3 }
}
operation {
  type: "Sub"
  sub_options {
    activation: 0
  }
  input: "ifm1"
  input: "ifm2"
  output: "ofm1"
}
operation {
  type: "Sub"
  sub_options {
    activation: 0
  }
  input: "ifm1"
  input: "ifm2"
  output: "ofm2"
}
input: "ifm1"
input: "ifm2"
output: "ofm1"
output: "ofm2"