blob: 6ab1350b2565f2146b39164c66124eb707949e7d [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +00002 * Copyright (c) 2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef __ARM_COMPUTE_NECONVOLUTIONLAYER_H__
25#define __ARM_COMPUTE_NECONVOLUTIONLAYER_H__
26
27#include "arm_compute/runtime/IFunction.h"
28
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Types.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010030#include "arm_compute/runtime/MemoryGroup.h"
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000031#include "arm_compute/runtime/NEON/functions/NEDirectConvolutionLayer.h"
32#include "arm_compute/runtime/NEON/functions/NEGEMMConvolutionLayer.h"
33#include "arm_compute/runtime/NEON/functions/NEWinogradLayer.h"
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010034#include <memory>
35
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036namespace arm_compute
37{
38class ITensor;
39
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000040/** Basic function to simulate a convolution layer. This function calls one of the following NEON functions:
41 * -# @ref NEGEMMConvolutionLayer (executed only in case GEMM is required for the operation)
42 * -# @ref NEWinogradLayer (executed only in case Winograd is required for the operation)
43 * -# @ref NEDirectConvolutionLayer (executed only in case Direct Convolution is required for the operation)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044 */
45class NEConvolutionLayer : public IFunction
46{
47public:
48 /** Constructor */
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000049 NEConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010050
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051 /** Set the input and output tensors.
52 *
53 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
54 * while every optional dimension from 4 and above represent a batch of inputs.
Isabella Gottardie6630e42018-01-18 15:50:39 +000055 * Data types supported: QS8/QASYMM8/QS16/F32.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported: Same as @p input.
Isabella Gottardie6630e42018-01-18 15:50:39 +000057 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
58 * Data type supported: Should match @p input data type, except for input of QASYMM8 type where biases should be of S32 type.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
60 * Data types supported: Same as @p input.
61 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
62 * @param[in] weights_info Specifies if the weights tensor has been reshaped with NEWeightsReshapeKernel. If this is not part of the fully connected layer the weights
63 * tensor has also been transposed with NEGEMMTranspose1xWKernel. Data type supported: Same as @p input.
64 */
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000065 void configure(ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info = WeightsInfo());
Giorgio Arena7c23ad02017-11-30 15:08:38 +000066 /** Static function to check if given info will lead to a valid configuration of @ref NEConvolutionLayer
67 *
68 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
69 * while every optional dimension from 4 and above represent a batch of inputs.
Isabella Gottardie6630e42018-01-18 15:50:39 +000070 * Data types supported: QS8/QASYMM8/QS16/F16/F32.
Giorgio Arena7c23ad02017-11-30 15:08:38 +000071 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
Isabella Gottardie6630e42018-01-18 15:50:39 +000072 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
73 * Data type supported: Should match @p input data type, except for input of QASYMM8 type where biases should be of S32 type.
Giorgio Arena7c23ad02017-11-30 15:08:38 +000074 * @param[in] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
75 * Data types supported: Same as @p input.
76 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
77 * @param[in] weights_info Specifies if the weights tensor has been reshaped with NEWeightsReshapeKernel. If this is not part of the fully connected layer the weights
78 * tensor has also been transposed with NEGEMMTranspose1xWKernel. Data type supported: Same as @p input.
79 *
80 * @return a status
81 */
82 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
83 const WeightsInfo &weights_info = WeightsInfo());
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000084 /** Static function to check if given info will return the convolution called by @ref NEConvolutionLayer
85 *
86 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
87 * while every optional dimension from 4 and above represent a batch of inputs.
88 * Data types supported: QS8/QASYMM8/QS16/F16/F32.
89 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
90 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
91 * Data type supported: Should match @p input data type, except for input of QASYMM8 type where biases should be of S32 type.
92 * @param[in] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
93 * Data types supported: Same as @p input.
94 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
95 * @param[in] weights_info Specifies if the weights tensor has been reshaped with NEWeightsReshapeKernel. If this is not part of the fully connected layer the weights
96 * tensor has also been transposed with NEGEMMTranspose1xWKernel. Data type supported: Same as @p input.
97 *
98 * @return the Convolution Method Hint
99 */
100 static ConvolutionMethod get_convolution_method(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
101 const WeightsInfo &weights_info = WeightsInfo());
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100102
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103 // Inherited methods overridden:
104 void run() override;
105
106private:
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000107 std::shared_ptr<IMemoryManager> _memory_manager;
108 std::unique_ptr<IFunction> _function; /**< Function to run */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100109};
110}
111#endif /* __ARM_COMPUTE_NECONVOLUTIONLAYER_H__ */