summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Part_Sqrt_Rsqrt_Add_003/test.recipe
blob: c2dae2e86690fc64483bb9c330b3e2b054068e68 (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
43
44
45
46
47
operand {
  name: "ifm1"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
}
operand {
  name: "ifm2"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
}
operand {
  name: "rsqrt"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
}
operand {
  name: "sqrt"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
}
operation {
  type: "Rsqrt"
  input: "ifm1"
  output: "rsqrt"
}
operation {
  type: "Sqrt"
  input: "ifm2"
  output: "sqrt"
}
operation {
  type: "Add"
  add_options {
    activation: NONE
  }
  input: "rsqrt"
  input: "sqrt"
  output: "ofm"
}
input: "ifm1"
input: "ifm2"
output: "ofm"