Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Conv2D_003 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 1 dim: 64 dim: 64 dim: 1 }
5 }
6 operand {
7   name: "ker"
8   type: FLOAT32
9   shape { dim: 1 dim: 3 dim: 3 dim: 1 }
10   filler {
11     tag: "gaussian"
12     arg: "0.0"
13     arg: "1.0"
14   }
15 }
16 operand {
17   name: "bias"
18   type: FLOAT32
19   shape { dim: 1 }
20   filler {
21     tag: "gaussian"
22     arg: "0.0"
23     arg: "1.0"
24   }
25 }
26 operand {
27   name: "ofm"
28   type: FLOAT32
29   shape { dim: 1 dim: 60 dim: 60 dim: 1 }
30 }
31 operation {
32   type: "Conv2D"
33   conv2d_options {
34     padding: VALID
35     stride_w: 1
36     stride_h: 1
37     dilation_w_factor: 2
38     dilation_h_factor: 2
39     activation: RELU
40   }
41   input: "ifm"
42   input: "ker"
43   input: "bias"
44   output: "ofm"
45 }
46 input: "ifm"
47 output: "ofm"