Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Unpack_003 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 5 dim: 2 dim: 3 dim: 4 }
5 }
6 operand {
7   name: "ofm"
8   type: FLOAT32
9   shape { dim: 2 dim: 3 dim: 4 }
10 }
11 operand {
12   name: "ofm:1"
13   type: FLOAT32
14   shape { dim: 2 dim: 3 dim: 4 }
15 }
16 operand {
17   name: "ofm:2"
18   type: FLOAT32
19   shape { dim: 2 dim: 3 dim: 4 }
20 }
21 operand {
22   name: "ofm:3"
23   type: FLOAT32
24   shape { dim: 2 dim: 3 dim: 4 }
25 }
26 operand {
27   name: "ofm:4"
28   type: FLOAT32
29   shape { dim: 2 dim: 3 dim: 4 }
30 }
31 operation {
32   type: "Unpack"
33   input: "ifm"
34   output: "ofm"
35   output: "ofm:1"
36   output: "ofm:2"
37   output: "ofm:3"
38   output: "ofm:4"
39   unpack_options {
40     num: 5
41     axis: 0
42   }
43 }
44 input: "ifm"
45 output: "ofm"
46 # output: "ofm:1" is intentionally removed
47 # output: "ofm:2" is intentionally removed
48 # output: "ofm:3" is intentionally removed
49 # output: "ofm:4" is intentionally removed
50
51 # This is a test for case of not all Unpack outputs are used