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