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