ONE - On-device Neural Engine
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ConvolutionLayer.h
Go to the documentation of this file.
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_OPS_CONVOLUTIONLAYER_H__
18#define __ONERT_BACKEND_CPU_OPS_CONVOLUTIONLAYER_H__
19
21#include "OperationUtils.h"
22
23#include <exec/IFunction.h>
24#include <functional>
25#include <memory>
26
27namespace nnfw::cker
28{
29class Conv;
30struct ConvHybridTempArena;
31class Shape;
32} // namespace nnfw::cker
33
35{
36
38{
39public:
42
43public:
44 void configure(const IPortableTensor *input, const IPortableTensor *kernel,
46 const uint32_t paddingLeft, const uint32_t paddingRight, const uint32_t paddingTop,
47 const uint32_t paddingBottom, const uint32_t strideWidth,
48 const uint32_t strideHeight, const uint32_t dilationWidthFactor,
49 const uint32_t dilationHeightFactor, const ir::Activation activation,
50 IPortableTensor *output, bool is_cachable_weights);
51 void prepare() override;
52 void run() override;
53
54private:
55 void convFloat32();
56 void convQ8uPerTensor();
57 void convQ8uPerChannel();
58 void convQ8i();
59 void convQ8iHybridPerChannel();
60
61protected:
66
68 uint32_t _paddingLeft;
69 uint32_t _paddingTop;
70 uint32_t _paddingRight;
72
73 uint32_t _strideWidth;
74 uint32_t _strideHeight;
77
79
80 std::unique_ptr<nnfw::cker::Conv> _conv_kernel;
81 std::unique_ptr<nnfw::cker::ConvHybridTempArena> _hybrid_arena;
82
86};
87
88} // namespace onert::backend::cpu::ops
89
90#endif // __ONERT_BACKEND_CPU_OPS_CONVOLUTIONLAYER_H__
void Conv(const float *input_data, const Dims< 4 > &input_dims, const float *filter_data, const Dims< 4 > &filter_dims, const float *bias_data, const Dims< 4 > &bias_dims, int stride_width, int stride_height, int pad_width, int pad_height, float *output_data, const Dims< 4 > &output_dims, float *im2col_data, const Dims< 4 > &im2col_dims)
A tensor class that is portable for other backends.
std::unique_ptr< nnfw::cker::Conv > _conv_kernel
void configure(const IPortableTensor *input, const IPortableTensor *kernel, const IPortableTensor *bias, ir::PaddingType _paddingType, const uint32_t paddingLeft, const uint32_t paddingRight, const uint32_t paddingTop, const uint32_t paddingBottom, const uint32_t strideWidth, const uint32_t strideHeight, const uint32_t dilationWidthFactor, const uint32_t dilationHeightFactor, const ir::Activation activation, IPortableTensor *output, bool is_cachable_weights)
std::unique_ptr< nnfw::cker::ConvHybridTempArena > _hybrid_arena
Definition Shape.h:28