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