Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Split_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 6 dim: 1 dim: 2 }
5 }
6 operand {
7   name: "split_dim"
8   type: INT32
9   shape { }
10   filler { tag: "explicit" arg: "0" }
11 }
12 operand {
13   name: "ofm1"
14   type: FLOAT32
15   shape { dim: 3 dim: 1 dim: 2 }
16 }
17 operand {
18   name: "ofm2"
19   type: FLOAT32
20   shape { dim: 3 dim: 1 dim: 2 }
21 }
22 operation {
23   type: "Split"
24   split_options {
25     num_splits: 2
26   }
27   input: "split_dim"
28   input: "ifm"
29   output: "ofm1"
30   output: "ofm2"
31 }
32 input: "ifm"
33 output: "ofm1"
34 output: "ofm2"