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