Imported Upstream version 1.21.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Quant_Concatenation_001 / test.recipe
1 operand {
2   name: "ifm1"
3   type: FLOAT32
4   shape { dim: 1 dim: 4 dim: 4 dim: 1 }
5 }
6 operand {
7   name: "ifm2"
8   type: FLOAT32
9   shape { dim: 1 dim: 4 dim: 4 dim: 2 }
10 }
11 operand {
12   name: "ofm"
13   type: FLOAT32
14   shape { dim: 1 dim: 4 dim: 4 dim: 3 }
15 }
16 operation {
17   type: "Concatenation"
18   concatenation_options {
19     axis: 3
20     activation: NONE
21   }
22   input: "ifm1"
23   input: "ifm2"
24   output: "ofm"
25 }
26 input: "ifm1"
27 input: "ifm2"
28 output: "ofm"