Imported Upstream version 1.8.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / AveragePool2D_U8_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: UINT8
4   shape { dim: 1 dim: 8 dim: 8 dim: 1 }
5   quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
6 }
7 operand {
8   name: "ofm"
9   type: UINT8
10   shape { dim: 1 dim: 7 dim: 7 dim: 1 }
11   quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
12 }
13 operation {
14   type: "AveragePool2D"
15   averagepool2d_options {
16     padding: VALID
17     stride_w: 1
18     stride_h: 1
19     filter_width: 2
20     filter_height: 2
21   }
22   input: "ifm"
23   output: "ofm"
24 }
25 input: "ifm"
26 output: "ofm"