Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / SpaceToDepth_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 4 dim: 4 dim: 3 }
5 }
6 operand {
7   name: "ofm"
8   type: FLOAT32
9   shape { dim: 1 dim: 2 dim: 2 dim: 12 }
10 }
11 operation {
12   type: "SpaceToDepth"
13   space_to_depth_options {
14     block_size: 2
15   }
16   input: "ifm"
17   output: "ofm"
18 }
19 input: "ifm"
20 output: "ofm"