Imported Upstream version 1.8.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / SpaceToDepth_U8_000 / test.recipe
1 operand {
2   name: "ifm"
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: "ofm"
9   type: UINT8
10   shape { dim: 1 dim: 2 dim: 2 dim: 12 }
11   quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
12 }
13 operation {
14   type: "SpaceToDepth"
15   space_to_depth_options {
16     block_size: 2
17   }
18   input: "ifm"
19   output: "ofm"
20 }
21 input: "ifm"
22 output: "ofm"