Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Mean_U8_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: UINT8
4   shape { dim: 1 dim: 8 dim: 8 dim: 4 }
5   quant { min: -128 max: 127 scale: 1 zero_point: 128 }
6 }
7 operand {
8   name: "reduction_indices"
9   type: INT32
10   shape { dim: 2 }
11   filler { tag: "explicit" arg: "1" arg: "2" }
12 }
13 operand {
14   name: "ofm"
15   type: UINT8
16   shape { dim: 1 dim: 1 dim: 1 dim: 4 }
17   quant { min: -256 max: 254 scale: 2 zero_point: 128 }
18 }
19 operation {
20   type: "Mean"
21   mean_options {
22     keep_dims: true
23   }
24   input: "ifm"
25   input: "reduction_indices"
26   output: "ofm"
27 }
28 input: "ifm"
29 output: "ofm"