fb032ecbfaf5ae122df3708f999b9300ff9aff91
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / DepthwiseConvolutionLayer.h
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __ONERT_KERNEL_CPU_DEPTHWISECONVOLUTIONLAYER_H__
18 #define __ONERT_KERNEL_CPU_DEPTHWISECONVOLUTIONLAYER_H__
19
20 #include <backend/IPortableTensor.h>
21 #include "OperationUtils.h"
22
23 #include <exec/IFunction.h>
24
25 namespace onert
26 {
27 namespace backend
28 {
29 namespace cpu
30 {
31 namespace ops
32 {
33
34 class DepthwiseConvolutionLayer : public ::onert::exec::IFunction
35 {
36 public:
37   DepthwiseConvolutionLayer() = default;
38
39 public:
40   void convFloat32();
41
42   void convQuant8();
43
44   void configure(const IPortableTensor *input, const IPortableTensor *kernel,
45                  const IPortableTensor *bias, const uint32_t paddingLeft,
46                  const uint32_t paddingRight, const uint32_t paddingTop,
47                  const uint32_t paddingBottom, const uint32_t strideW, const uint32_t strideH,
48                  const uint32_t multiplier, const uint32_t dilationWidth,
49                  const uint32_t dilationHeight, const ir::Activation activation,
50                  IPortableTensor *output);
51
52   void run() override;
53
54 private:
55   const IPortableTensor *_input{nullptr};
56   const IPortableTensor *_kernel{nullptr};
57   const IPortableTensor *_bias{nullptr};
58   IPortableTensor *_output{nullptr};
59
60   uint32_t _paddingLeft{0};
61   uint32_t _paddingTop{0};
62   uint32_t _paddingRight{0};
63   uint32_t _paddingBottom{0};
64
65   uint32_t _strideWidth{0};
66   uint32_t _strideHeight{0};
67
68   uint32_t _multiplier{0};
69
70   uint32_t _dilationWidth{1};
71   uint32_t _dilationHeight{1};
72
73   ir::Activation _activation{ir::Activation::NONE};
74 };
75
76 } // namespace ops
77 } // namespace cpu
78 } // namespace backend
79 } // namespace onert
80
81 #endif // __ONERT_KERNEL_CPU_DEPTHWISECONVOLUTIONLAYER_H__