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