blob: 8270e9723e57e48f6275015aec4c78a3d98849e8 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco20d78482018-01-11 15:10:58 +00002 * Copyright (c) 2017-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_CLCONVOLUTIONLAYER_H__
25#define __ARM_COMPUTE_CLCONVOLUTIONLAYER_H__
26
Isabella Gottardif07d28d2018-02-06 14:52:43 +000027#include "arm_compute/runtime/CL/functions/CLDirectConvolutionLayer.h"
28#include "arm_compute/runtime/CL/functions/CLGEMMConvolutionLayer.h"
Gian Marco Iodicee52a3002018-04-11 15:59:10 +010029#include "arm_compute/runtime/CL/functions/CLWinogradConvolutionLayer.h"
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000030#include "arm_compute/runtime/IFunction.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010031#include "arm_compute/runtime/IMemoryManager.h"
32
33#include <memory>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
35namespace arm_compute
36{
Gian Marco20d78482018-01-11 15:10:58 +000037/** Basic function to compute the convolution layer. This function calls the following OpenCL kernels/functions:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038 *
Isabella Gottardif07d28d2018-02-06 14:52:43 +000039 * -# @ref CLGEMMConvolutionLayer
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010040 * -# @ref CLWinogradConvolutionLayer
Isabella Gottardif07d28d2018-02-06 14:52:43 +000041 * -# @ref CLDirectConvolutionLayer
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042 */
43class CLConvolutionLayer : public IFunction
44{
45public:
46 /** Default constructor */
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010047 CLConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048 /** Set the input and output tensors.
49 *
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010050 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
51 * while every optional dimension from 4 and above represent a batch of inputs.
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010052 * Data types supported: QASYMM8/F16/F32.
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010053 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported: Same as @p input.
54 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
55 * Data type supported: Should match @p input data type, except for input of QASYMM8 type where biases should be of S32 type.
56 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
57 * Data types supported: Same as @p input.
58 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
59 * @param[in] weights_info Specifies if the weights tensor has been reshaped with CLWeightsReshapeKernel. Data type supported: Same as @p input.
60 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
61 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
62 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010063 * available which may introduce a drop of accuracy as well. Default is false
64 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is only supported for NCHW data layout
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065 */
Alex Gilday7da29b62018-03-23 14:16:00 +000066 void configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info = WeightsInfo(),
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010067 const Size2D &dilation = Size2D(1U, 1U), const ActivationLayerInfo &act_info = ActivationLayerInfo(), bool enable_fast_math = false, unsigned int num_groups = 1);
Isabella Gottardif07d28d2018-02-06 14:52:43 +000068 /** Static function to check if given info will lead to a valid configuration of @ref CLConvolutionLayer
69 *
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010070 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
71 * while every optional dimension from 4 and above represent a batch of inputs.
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010072 * Data types supported: QASYMM8/F16/F32.
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010073 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
74 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM]. Data type supported:Same as @p input.
75 * @param[in] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
76 * Data types supported: Same as @p input.
77 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
Michele Di Giorgio70ba7d62018-06-06 17:03:36 +010078 * @param[in] weights_info Specifies if the weights tensor has been reshaped with CLWeightsReshapeKernel.
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010079 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
80 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
81 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
82 * available which may introduce a drop of accuracy as well. Default is false
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010083 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution. num_groups != 1 is only supported for NCHW data layout
Isabella Gottardif07d28d2018-02-06 14:52:43 +000084 *
85 * @return a status
86 */
87 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010088 const WeightsInfo &weights_info = WeightsInfo(), const Size2D &dilation = Size2D(1U, 1U), const ActivationLayerInfo &act_info = ActivationLayerInfo(), bool enable_fast_math = false,
89 unsigned int num_groups = 1);
Isabella Gottardif07d28d2018-02-06 14:52:43 +000090 /** Static function to check if given info will return the convolution called by @ref CLConvolutionLayer
91 *
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010092 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
93 * while every optional dimension from 4 and above represent a batch of inputs.
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010094 * Data types supported: QASYMM8/F16/F32.
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010095 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
96 * @param[in] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
97 * Data types supported: Same as @p input.
98 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
Michele Di Giorgio70ba7d62018-06-06 17:03:36 +010099 * @param[in] weights_info Specifies if the weights tensor has been reshaped with CLWeightsReshapeKernel.
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +0100100 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
101 * @param[in] gpu_target Specifies the @p GPUTarget.
102 * @param[in] dilation (Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
103 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
104 * available which may introduce a drop of accuracy as well. Default is false
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000105 *
106 * @return a status
107 */
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100108 static ConvolutionMethod get_convolution_method(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *output, const PadStrideInfo &conv_info,
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +0100109 const WeightsInfo &weights_info, const ActivationLayerInfo &act_info, const GPUTarget gpu_target, const Size2D &dilation = Size2D(1U, 1U), bool enable_fast_math = false);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110 // Inherited methods overridden:
111 void run() override;
Georgios Pinitase0437672018-05-02 14:07:55 +0100112 void prepare() override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113
114private:
Isabella Gottardif07d28d2018-02-06 14:52:43 +0000115 std::shared_ptr<IMemoryManager> _memory_manager;
Georgios Pinitase0437672018-05-02 14:07:55 +0100116 std::unique_ptr<IFunction> _function;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117};
118}
119#endif /* __ARM_COMPUTE_CLCONVOLUTIONLAYER_H__ */