Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Reshape_002 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 1 dim: 1 dim: 10 }
5 }
6 operand {
7   name: "shape"
8   type: INT32
9   shape { dim: 1 dim: 2 }
10   filler { tag: "explicit" arg: "-1" arg: "10" }
11 }
12 operand {
13   name: "ofm"
14   type: FLOAT32
15   shape { dim: 1 dim: 10 }
16 }
17 operation {
18   type: "Reshape"
19   reshape_options {
20     new_shape: -1
21     new_shape: 10
22   }
23   input: "ifm"
24   input: "shape"
25   output: "ofm"
26 }
27 input: "ifm"
28 output: "ofm"