Imported Upstream version 1.8.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / ResizeBilinear_U8_000 / test.recipe
1 operand {
2   name: "ifm1"
3   type: UINT8
4   shape { dim: 1 dim: 4 dim: 4 dim: 3 }
5   quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
6 }
7 operand {
8   name: "size"
9   type: INT32
10   shape { dim: 2 }
11   filler {
12     tag: "constant" arg: "16" arg: "16"
13   }
14 }
15 operand {
16   name: "ofm"
17   type: UINT8
18   shape { dim: 1 dim: 16 dim: 16 dim: 3 }
19   quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
20 }
21 operation {
22   type: "ResizeBilinear"
23   input: "ifm1"
24   input: "size"
25   output: "ofm"
26   resize_bilinear_options {
27     align_corners: false
28     half_pixel_centers: false
29   }
30 }
31 input: "ifm1"
32 output: "ofm"