Imported Upstream version 1.21.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Quant_ResizeNearestNeighbor_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 4 dim: 4 dim: 8 }
5 }
6 operand {
7     name: "size"
8     type: INT32
9     shape { dim: 2 }
10     filler { tag: "explicit" arg: "16" arg: "16" }
11 }
12 operand {
13   name: "ofm"
14   type: FLOAT32
15   shape { dim: 1 dim: 16 dim: 16 dim: 8 }
16 }
17 operation {
18   type: "ResizeNearestNeighbor"
19   resize_nearest_neighbor_options {
20     align_corners: true
21   }
22   input: "ifm"
23   input: "size"
24   output: "ofm"
25 }
26 input: "ifm"
27 output: "ofm"