Imported Upstream version 1.4.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / kernel / ConvolutionLayer.h
1 /*
2  * Copyright (c) 2018 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_BACKEND_CPU_KERNEL_CONVOLUTIONLAYER_H__
18 #define __ONERT_BACKEND_CPU_KERNEL_CONVOLUTIONLAYER_H__
19
20 #include "../operand/Tensor.h"
21 #include "OperationUtils.h"
22
23 #include <exec/IFunction.h>
24 #include <functional>
25 #include <memory>
26
27 namespace nnfw
28 {
29 namespace cker
30 {
31 class Conv;
32 }
33 } // namespace nnfw
34
35 namespace onert
36 {
37 namespace backend
38 {
39 namespace cpu
40 {
41 namespace kernel
42 {
43
44 class ConvolutionLayer : public ::onert::exec::IFunction
45 {
46 public:
47   ConvolutionLayer();
48   ~ConvolutionLayer();
49
50 public:
51   void convFloat32();
52
53   void convQuant8();
54
55   void configure(const operand::Tensor *input, const operand::Tensor *kernel,
56                  const operand::Tensor *bias, const ir::PaddingType paddingType,
57                  const uint32_t paddingLeft, const uint32_t paddingRight, const uint32_t paddingTop,
58                  const uint32_t paddingBottom, const uint32_t strideW, const uint32_t strideH,
59                  const ir::Activation activation, operand::Tensor *output);
60
61   void run();
62   void runSync()
63   {
64     // this abstract method is used just for profiling and called for
65     // backend::acl_common::AclFunction
66     run();
67   }
68
69 private:
70   const operand::Tensor *_input;
71   const operand::Tensor *_kernel;
72   const operand::Tensor *_bias;
73   operand::Tensor *_output;
74
75   ir::PaddingType _paddingType;
76   uint32_t _paddingLeft;
77   uint32_t _paddingTop;
78   uint32_t _paddingRight;
79   uint32_t _paddingBottom;
80
81   uint32_t _strideWidth;
82   uint32_t _strideHeight;
83
84   ir::Activation _activation;
85
86   std::unique_ptr<nnfw::cker::Conv> _conv_kernel;
87
88   bool _prepare;
89 };
90
91 } // namespace kernel
92 } // namespace cpu
93 } // namespace backend
94 } // namespace onert
95
96 #endif // __ONERT_BACKEND_CPU_KERNEL_CONVOLUTIONLAYER_H__