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