blob: f6f0185e7de9e22c16374881ba8f8ef24335b405 [file] [log] [blame]
Pablo Tello89519332017-11-17 11:52:36 +00001/*
Matthew Benthamf1aeab92023-05-30 13:35:34 +00002 * Copyright (c) 2017-2023 Arm Limited.
Pablo Tello89519332017-11-17 11:52:36 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEWINOGRADCONVOLUTIONLAYER_H
25#define ARM_COMPUTE_NEWINOGRADCONVOLUTIONLAYER_H
Pablo Tello89519332017-11-17 11:52:36 +000026
27#include "arm_compute/runtime/IFunction.h"
28
Pablo Tello89519332017-11-17 11:52:36 +000029#include "arm_compute/core/Types.h"
SiCong Li91295492023-07-21 18:16:13 +010030#include "arm_compute/function_info/ActivationLayerInfo.h"
Pablo Tello89519332017-11-17 11:52:36 +000031#include "arm_compute/runtime/Tensor.h"
32
33#include <memory>
34
35namespace arm_compute
36{
Georgios Pinitas5ce897f2020-04-29 11:44:10 +010037// Forward declarations
Pablo Tello89519332017-11-17 11:52:36 +000038class ITensor;
Georgios Pinitas5ce897f2020-04-29 11:44:10 +010039
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000040/** Basic function to simulate a convolution layer. This function calls the following kernels:
41 *
Michalis Spyrou96f977e2021-07-01 12:20:56 +010042 * -# @ref cpu::CpuWinogradConv2dTransformInputKernel
43 * -# @ref cpu::CpuWinogradConv2dTransformOutputKernel
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010044 * -# @ref cpu::CpuGemmAssemblyDispatch
Pablo Tellof6c572c2018-02-14 12:47:30 +000045 * -# @ref CPPPermute (three times: weights, input and output)
Giorgio Arenaa3221e62018-05-03 15:57:48 +010046 *
47 * @note Some Winograd configurations (i.e. F(2x2, 5x5), F(4x4, 5x5)) are supported only with enable_fast_math = true
Pablo Tello89519332017-11-17 11:52:36 +000048 */
Georgios Pinitas9fb11592018-04-26 20:34:58 +010049class NEWinogradConvolutionLayer : public IFunction
Pablo Tello89519332017-11-17 11:52:36 +000050{
51public:
52 /** Constructor */
Michalis Spyroua4f378d2019-04-26 14:54:54 +010053 NEWinogradConvolutionLayer(const std::shared_ptr<IMemoryManager> &memory_manager = nullptr);
Michalis Spyrou96f977e2021-07-01 12:20:56 +010054 /** Prevent instances of this class from being copied (As this class contains pointers) */
55 NEWinogradConvolutionLayer(const NEWinogradConvolutionLayer &) = delete;
56 /** Default move constructor */
57 NEWinogradConvolutionLayer(NEWinogradConvolutionLayer &&) = default;
58 /** Prevent instances of this class from being copied (As this class contains pointers) */
59 NEWinogradConvolutionLayer &operator=(const NEWinogradConvolutionLayer &) = delete;
60 /** Default move assignment operator */
61 NEWinogradConvolutionLayer &operator=(NEWinogradConvolutionLayer &&) = default;
62 /** Destructor */
63 ~NEWinogradConvolutionLayer();
Pablo Tello89519332017-11-17 11:52:36 +000064
65 /** Set the input and output tensors.
66 *
Teresa Charlin62687422021-04-28 10:58:49 +010067 * Valid data layouts:
68 * - NHWC
69 * - NCHW
70 *
71 * Valid data type configurations:
72 * |src0 |src1 |src2 |dst |
73 * |:--------------|:--------------|:------|:--------------|
74 * |F16 |F16 |F16 |F16 |
75 * |F32 |F32 |F32 |F32 |
76 *
Giorgio Arenaa3221e62018-05-03 15:57:48 +010077 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
78 * while every optional dimension from 4 and above represent a batch of inputs.
Georgios Pinitas5ce897f2020-04-29 11:44:10 +010079 * Data types supported: F16/F32.
Giorgio Arenaa3221e62018-05-03 15:57:48 +010080 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported: Same as @p input.
81 * Currently only 3x3 and 5x5 kernels are supported.
82 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p weights.
83 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
84 * Data types supported: Same as @p input.
85 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo. Currently only unit strides are supported.
86 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
87 * @param[in] enable_fast_math (Optional) Enable fast math computation. In case this flag were set, the function could dispatch the fastest implementation
88 * available which may introduce a drop of accuracy as well. Default is false
Pablo Tello89519332017-11-17 11:52:36 +000089 */
Giorgio Arenaa3221e62018-05-03 15:57:48 +010090 void configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info = ActivationLayerInfo(),
91 bool enable_fast_math = false);
Pablo Tello89519332017-11-17 11:52:36 +000092
93 // Inherited methods overridden:
94 void run() override;
Georgios Pinitas72219332018-06-05 14:56:06 +010095 void prepare() override;
Pablo Tello89519332017-11-17 11:52:36 +000096
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010097 /** Static function to check if given info will lead to a valid configuration of @ref NEWinogradConvolutionLayer
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000098 *
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010099 * Similar to @ref NEWinogradConvolutionLayer::configure()
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000100 *
101 * @return a status
102 */
Vidhya Sudhan Loganathan3ca97862018-04-23 08:20:04 +0100103 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Giorgio Arenaa3221e62018-05-03 15:57:48 +0100104 const ActivationLayerInfo &act_info = ActivationLayerInfo(), bool enable_fast_math = false);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000105
Pablo Tello89519332017-11-17 11:52:36 +0000106private:
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100107 struct Impl;
108 std::unique_ptr<Impl> _impl;
Pablo Tello89519332017-11-17 11:52:36 +0000109};
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100110} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000111#endif /* ARM_COMPUTE_NEWINOGRADCONVOLUTIONLAYER_H */