summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Reshape_U8_000/test.recipe
blob: 5fe10e599cdb3653e654461aada2190daec673d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
operand {
  name: "ifm"
  type: UINT8
  shape { dim: 1 dim: 1 dim: 1 dim: 10 }
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operand {
  name: "ofm"
  type: UINT8
  shape { dim: 10 }
  quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operation {
  type: "Reshape"
  reshape_options {
    new_shape: 10
  }
  input: "ifm"
  output: "ofm"
}
input: "ifm"
output: "ofm"