Imported Upstream version 1.9.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / PadV2_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: "constant_values"
20   type: INT32
21   shape { dim: 1 }
22   filler {
23     tag: "explicit"
24     arg: "1" 
25   }
26 }
27 operand {
28   name: "ofm"
29   type: FLOAT32
30   shape { dim: 1 dim: 5 dim: 7 dim: 2 }
31 }
32 operation {
33   type: "PadV2"
34   input: "ifm"
35   input: "padding"
36   input: "constant_values"
37   output: "ofm"
38 }
39 input: "ifm"
40 output: "ofm"