summaryrefslogtreecommitdiff
path: root/compiler/enco/test/tflite/Reshape_000/test.recipe
blob: bb7ce48a95d363a6082af1277e248e5a5c679d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 1 dim: 10 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 10 }
}
operation {
  type: "Reshape"
  reshape_options {
    new_shape: -1
    new_shape: 10
  }
  input: "ifm"
  output: "ofm"
}
input: "ifm"
output: "ofm"