Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / TransposeConv_000 / test.recipe
1 operand {
2   name: "out_shape"
3   type: INT32
4   shape { dim: 4 }
5   filler {
6     tag: "explicit"
7     arg: "1" arg: "4" arg: "4" arg: "3" 
8   }
9 }
10 operand {
11   name: "ker"
12   type: FLOAT32
13   shape { dim: 3 dim: 1 dim: 1 dim: 3 }
14   filler {
15     tag: "gaussian"
16     arg: "0.0"
17     arg: "1.0"
18   }
19 }
20 operand {
21   name: "ifm"
22   type: FLOAT32
23   shape { dim: 1 dim: 4 dim: 4 dim: 3 }
24 }
25 operand {
26   name: "ofm"
27   type: FLOAT32
28   shape { dim: 1 dim: 4 dim: 4 dim: 3 }
29 }
30
31 operation {
32   type: "TransposeConv"
33   transpose_conv_options {
34     padding: SAME
35     stride_w: 1
36     stride_h: 1
37     activation: NONE
38   }
39   input: "out_shape"
40   input: "ker"
41   input: "ifm"
42   output: "ofm"
43 }
44 input: "ifm"
45 output: "ofm"