Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / L2Pool2D_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 8 dim: 8 dim: 1 }
5 }
6 operand {
7   name: "ofm"
8   type: FLOAT32
9   shape { dim: 1 dim: 7 dim: 7 dim: 1 }
10 }
11 operation {
12   type: "L2Pool2D"
13   l2pool2d_options {
14     padding: VALID
15     stride_w: 1
16     stride_h: 1
17     filter_width: 2
18     filter_height: 2
19   }
20   input: "ifm"
21   output: "ofm"
22 }
23 input: "ifm"
24 output: "ofm"