2 * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #ifndef __ONERT_KERNEL_CPU_DEPTHWISECONVOLUTIONLAYER_H__
18 #define __ONERT_KERNEL_CPU_DEPTHWISECONVOLUTIONLAYER_H__
20 #include <backend/IPortableTensor.h>
21 #include "OperationUtils.h"
23 #include <exec/IFunction.h>
34 class DepthwiseConvolutionLayer : public ::onert::exec::IFunction
37 DepthwiseConvolutionLayer() = default;
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);
55 const IPortableTensor *_input{nullptr};
56 const IPortableTensor *_kernel{nullptr};
57 const IPortableTensor *_bias{nullptr};
58 IPortableTensor *_output{nullptr};
60 uint32_t _paddingLeft{0};
61 uint32_t _paddingTop{0};
62 uint32_t _paddingRight{0};
63 uint32_t _paddingBottom{0};
65 uint32_t _strideWidth{0};
66 uint32_t _strideHeight{0};
68 uint32_t _multiplier{0};
70 uint32_t _dilationWidth{1};
71 uint32_t _dilationHeight{1};
73 ir::Activation _activation{ir::Activation::NONE};
78 } // namespace backend
81 #endif // __ONERT_KERNEL_CPU_DEPTHWISECONVOLUTIONLAYER_H__