summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Sqrt_000/test.recipe
blob: 1754f9a58c926d71cb64a234ef8347e883d5919d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
  filler { tag: "constant" arg: "3.5" }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 3 dim: 3 dim: 2 }
}
operation {
  type: "Sqrt"
  input: "ifm"
  output: "ofm"
}
input: "ifm"
output: "ofm"