ad76100d2d9faf37035a8d9300bb18d4fabc93f5
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / TransposeConv_001 / 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: "1" 
8   }
9 }
10 operand {
11   name: "ker"
12   type: FLOAT32
13   shape { dim: 1 dim: 3 dim: 3 dim: 2 }
14   filler {
15     tag: "explicit"
16     arg: "1" arg: "2" arg: "-3" arg: "-4" arg: "5" arg: "-6"
17     arg: "7" arg: "8" arg: "-9" arg: "-10" arg: "11" arg: "-12"
18     arg: "13" arg: "14" arg: "-15" arg: "-16" arg: "17" arg: "-18"
19   }
20 }
21 operand {
22   name: "ifm"
23   type: FLOAT32
24   shape { dim: 1 dim: 4 dim: 4 dim: 2 }
25 }
26 operand {
27   name: "ofm"
28   type: FLOAT32
29   shape { dim: 1 dim: 4 dim: 4 dim: 1 }
30 }
31
32 operation {
33   type: "TransposeConv"
34   transpose_conv_options {
35     padding: SAME
36     stride_w: 1
37     stride_h: 1
38   }
39   input: "out_shape"
40   input: "ker"
41   input: "ifm"
42   output: "ofm"
43 }
44 input: "ifm"
45 output: "ofm"