Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / SpaceToBatchND_002 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 4 dim: 4 dim: 1 }
5 }
6 operand {
7   name: "block_shape"
8   type: INT32
9   shape { dim: 2 }
10   filler {
11     tag: "explicit"
12     arg: "2" arg: "2"
13   }
14 }
15 operand {
16   name: "paddings"
17   type: INT32
18   shape { dim: 2 dim: 2 }
19   filler {
20     tag: "explicit"
21     arg: "0" arg: "0"
22     arg: "0" arg: "0"
23   }
24 }
25 operand {
26   name: "ofm"
27   type: FLOAT32
28   shape { dim: 4 dim: 2 dim: 2 dim: 1 }
29 }
30 operation {
31   type: "SpaceToBatchND"
32   input: "ifm"
33   input: "block_shape"
34   input: "paddings"
35   output: "ofm"
36 }
37 input: "ifm"
38 output: "ofm"