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