Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Conv2D_001 / 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: "ker"
8   type: FLOAT32
9   shape { dim: 1 dim: 1 dim: 1 dim: 2 }
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: "constant"
22     arg: "1.1"
23   }
24 }
25 operand {
26   name: "ofm"
27   type: FLOAT32
28   shape { dim: 1 dim: 3 dim: 3 dim: 1 }
29 }
30 operation {
31   type: "Conv2D"
32   conv2d_options {
33     padding: VALID
34     stride_w: 1
35     stride_h: 1
36   }
37   input: "ifm"
38   input: "ker"
39   input: "bias"
40   output: "ofm"
41 }
42 input: "ifm"
43 output: "ofm"