Imported Upstream version 1.19.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Conv2D_005 / 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: "ofm"
18   type: FLOAT32
19   shape { dim: 1 dim: 3 dim: 3 dim: 1 }
20 }
21 operation {
22   type: "Conv2D"
23   conv2d_options {
24     padding: VALID
25     stride_w: 1
26     stride_h: 1
27   }
28   input: "ifm"
29   input: "ker"
30   input: ""
31   output: "ofm"
32 }
33 input: "ifm"
34 output: "ofm"