summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Reshape_001/test.recipe
blob: bd5213f3989cdef297b123e658cebc07eef84c09 (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
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 1 dim: 10 }
}
operand {
  name: "shape"
  type: INT32
  shape { dim: 2 }
  filler { tag: "explicit" arg: "-1" arg: "10" }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 10 }
}
operation {
  type: "Reshape"
  reshape_options {
    new_shape: -1
    new_shape: 10
  }
  input: "ifm"
  input: "shape"
  output: "ofm"
}
input: "ifm"
output: "ofm"