Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / L2Pool2D_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: 1 scale: 0.004 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: 1 scale: 0.004 zero_point: 0 }
12 }
13 operation {
14   type: "L2Pool2D"
15   l2pool2d_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"