blob: 4ae75a5ace6f8746542ffd85ca84cf4f69e61304 [file] [log] [blame]
Gian Marco Iodiced2fab732018-03-02 11:18:12 +00001/*
giuros013bfacb22019-04-01 12:07:02 +01002 * Copyright (c) 2018-2019 ARM Limited.
Gian Marco Iodiced2fab732018-03-02 11:18:12 +00003 *
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_CLWINOGRADCONVOLUTIONLAYER_H__
25#define __ARM_COMPUTE_CLWINOGRADCONVOLUTIONLAYER_H__
26
27#include "arm_compute/core/CL/kernels/CLWinogradFilterTransformKernel.h"
28#include "arm_compute/core/CL/kernels/CLWinogradOutputTransformKernel.h"
29#include "arm_compute/core/Types.h"
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000030#include "arm_compute/runtime/CL/functions/CLActivationLayer.h"
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000031#include "arm_compute/runtime/CL/functions/CLGEMM.h"
32#include "arm_compute/runtime/CL/functions/CLWinogradInputTransform.h"
33#include "arm_compute/runtime/IFunction.h"
34
35namespace arm_compute
36{
37class ICLTensor;
38
39/** Basic function to execute Winograd-based convolution on OpenCL. This function calls the following OpenCL functions/kernels:
40 *
41 * -# @ref CLWinogradInputTransform
42 * -# @ref CLWinogradFilterTransformKernel (only once)
43 * -# @ref CLGEMM
44 * -# @ref CLWinogradOutputTransformKernel
45 *
46 */
47class CLWinogradConvolutionLayer : public IFunction
48{
49public:
50 /** Default constructor */
51 CLWinogradConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Georgios Pinitase0437672018-05-02 14:07:55 +010052 /** Prevent instances of this class from being copied (As this class contains pointers) */
53 CLWinogradConvolutionLayer(const CLWinogradConvolutionLayer &) = delete;
54 /** Default move constructor */
55 CLWinogradConvolutionLayer(CLWinogradConvolutionLayer &&) = default;
56 /** Prevent instances of this class from being copied (As this class contains pointers) */
57 CLWinogradConvolutionLayer &operator=(const CLWinogradConvolutionLayer &) = delete;
58 /** Default move assignment operator */
59 CLWinogradConvolutionLayer &operator=(CLWinogradConvolutionLayer &&) = default;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000060 /** Set the input and output tensors.
61 *
giuros013bfacb22019-04-01 12:07:02 +010062 * @note: This function only works with 3x3,3x1,1x3,5x5,5x1,1x5,7x1 and 1x7 kernels along with unit strides for both NCHW and NHWC data layout
Gian Marco Iodice876be2a2018-07-03 12:22:09 +010063 * @note Some Winograd configurations (i.e. F(4x4, 5x5)) are supported only with enable_fast_math = true
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000064 *
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010065 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
66 * while every optional dimension from 4 and above represent a batch of inputs.
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010067 * Data types supported: F16/F32.
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010068 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
69 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].Data type supported: Same as @p input
70 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
71 * Data types supported: Same as @p input.
72 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
73 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
74 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
75 * available which may introduce a drop of accuracy as well. Default is false
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000076 */
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000077 void configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info,
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010078 const ActivationLayerInfo &act_info = ActivationLayerInfo(), bool enable_fast_math = false);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000079 /** Static function to check if given info will lead to a valid configuration of @ref CLWinogradConvolutionLayer
80 *
Gian Marco Iodiced28b7512018-07-06 12:59:28 +010081 * @note: This function only works with 3x3,3x1,1x3,5x5,5x1 and 1x5 kernels along with unit strides for both NCHW and NHWC data layout
Gian Marco Iodice876be2a2018-07-03 12:22:09 +010082 * @note Some Winograd configurations (i.e. F(4x4, 5x5)) are supported only with enable_fast_math = true
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000083 *
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010084 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
85 * while every optional dimension from 4 and above represent a batch of inputs.
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010086 * Data types supported: F16/F32.
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010087 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
88 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].Data type supported: Same as @p input
89 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
90 * Data types supported: Same as @p input.
91 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
92 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
93 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
94 * available which may introduce a drop of accuracy as well. Default is false
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000095 *
96 * @return a status
97 */
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000098 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010099 const ActivationLayerInfo &act_info = ActivationLayerInfo(), bool enable_fast_math = false);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000100
101 // Inherited methods overridden:
102 void run() override;
Georgios Pinitase0437672018-05-02 14:07:55 +0100103 void prepare() override;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000104
105private:
106 CLMemoryGroup _memory_group;
107 CLGEMM _batched_mm;
108 CLWinogradInputTransform _input_transform;
109 CLWinogradFilterTransformKernel _filter_transform;
110 CLWinogradOutputTransformKernel _output_transform;
111 CLTensor _input0;
112 CLTensor _input1;
113 CLTensor _batched_mm_output;
Georgios Pinitase0437672018-05-02 14:07:55 +0100114 const ICLTensor *_original_weights;
115 bool _is_prepared;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000116};
Manuel Bottini0d0028c2018-10-02 16:41:52 +0100117} // namespace arm_compute
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000118#endif /* __ARM_COMPUTE_CLWINOGRADCONVOLUTIONLAYER_H__ */