blob: 037c74c1a8c737eceeb26968f57dfc3572722746 [file] [log] [blame]
Pablo Tello89519332017-11-17 11:52:36 +00001/*
Pablo Tello9ceebbe2018-01-10 16:44:13 +00002 * Copyright (c) 2017-2018 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 */
Georgios Pinitas9fb11592018-04-26 20:34:58 +010024#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 Tellof6c572c2018-02-14 12:47:30 +000029#include "arm_compute/core/NEON/INEKernel.h"
Michalis Spyrou2b3129e2018-04-25 18:10:13 +010030#include "arm_compute/core/NEON/kernels/assembly/arm_gemm.hpp"
Pablo Tello89519332017-11-17 11:52:36 +000031#include "arm_compute/core/Types.h"
Pablo Tello02541fb2017-12-15 09:48:59 +000032#include "arm_compute/runtime/CPP/functions/CPPPermute.h"
Pablo Tello89519332017-11-17 11:52:36 +000033#include "arm_compute/runtime/MemoryGroup.h"
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000034#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
Pablo Tello89519332017-11-17 11:52:36 +000035#include "arm_compute/runtime/Tensor.h"
36
37#include <memory>
38
39namespace arm_compute
40{
41class ITensor;
42/** Basic function to simulate a convolution layer. This function calls the following NEON kernels:
Pablo Tellof6c572c2018-02-14 12:47:30 +000043 * -# @ref NEWinogradLayerTransformWeightsKernel (executed only once in the first call to the run() method )
44 * -# @ref NEWinogradLayerTransformInputKernel
45 * -# @ref NEWinogradLayerTransformOutputKernel
46 * -# @ref NEWinogradLayerBatchedGEMMKernel
47 * -# @ref CPPPermute (three times: weights, input and output)
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 */
Georgios Pinitas9fb11592018-04-26 20:34:58 +010053 NEWinogradConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Pablo Tello89519332017-11-17 11:52:36 +000054
55 /** Set the input and output tensors.
56 *
57 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
58 * while every optional dimension from 4 and above represent a batch of inputs.
59 * Data types supported: F32.
60 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported: Same as @p input.
Vidhya Sudhan Loganathan3ca97862018-04-23 08:20:04 +010061 * Currently only 3x3 and 5x5 kernels are supported.
Pablo Tellod6ca4782018-01-23 09:36:04 +000062 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p weights.
Pablo Tello89519332017-11-17 11:52:36 +000063 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
64 * Data types supported: Same as @p input.
65 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo. Currently only unit strides are supported.
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000066 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
Pablo Tello89519332017-11-17 11:52:36 +000067 */
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000068 void configure(const ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info = ActivationLayerInfo());
Pablo Tello89519332017-11-17 11:52:36 +000069
70 // Inherited methods overridden:
71 void run() override;
72
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000073 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMConvolutionLayer
74 *
75 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
76 * while every optional dimension from 4 and above represent a batch of inputs.
77 * Data types supported: F32.
78 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
Vidhya Sudhan Loganathan3ca97862018-04-23 08:20:04 +010079 * Currently only 3x3 and 5x5 kernels are supported.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000080 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p weights.
81 * @param[in] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
82 * Data types supported: Same as @p input.
83 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo. Currently only unit strides are supported.
Vidhya Sudhan Loganathan3ca97862018-04-23 08:20:04 +010084 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000085 *
86 * @return a status
87 */
Vidhya Sudhan Loganathan3ca97862018-04-23 08:20:04 +010088 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
89 const ActivationLayerInfo &act_info = ActivationLayerInfo());
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000090
Pablo Tello89519332017-11-17 11:52:36 +000091 /** Prevent instances of this class from being copied (As this class contains pointers) */
Georgios Pinitas9fb11592018-04-26 20:34:58 +010092 NEWinogradConvolutionLayer(const NEWinogradConvolutionLayer &) = delete;
Pablo Tello89519332017-11-17 11:52:36 +000093 /** Prevent instances of this class from being copied (As this class contains pointers) */
Georgios Pinitas9fb11592018-04-26 20:34:58 +010094 NEWinogradConvolutionLayer &operator=(const NEWinogradConvolutionLayer &) = delete;
Pablo Tello89519332017-11-17 11:52:36 +000095
96private:
Michalis Spyrou2b3129e2018-04-25 18:10:13 +010097 MemoryGroup _memory_group;
98 std::unique_ptr<arm_gemm::GemmCommon<float, float>> _arm_gemm;
99 std::unique_ptr<INEKernel> _gemm_kernel;
Pablo Tellof6c572c2018-02-14 12:47:30 +0000100 std::unique_ptr<INEKernel> _transform_input_kernel;
101 std::unique_ptr<INEKernel> _transform_output_kernel;
102 std::unique_ptr<INEKernel> _transform_weights_kernel;
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000103 NEActivationLayer _activationlayer_function;
Pablo Tellof6c572c2018-02-14 12:47:30 +0000104
Pablo Tello52140b42018-01-30 14:48:11 +0000105 CPPPermute _permute_input;
106 CPPPermute _permute_weights;
107 CPPPermute _permute_output;
108 Tensor _input_workspace;
109 Tensor _output_workspace;
110 Tensor _kernel_storage;
111 Tensor _input_nhwc;
112 Tensor _output_nhwc;
113 Tensor _weights_hwio;
Michalis Spyrou2b3129e2018-04-25 18:10:13 +0100114 Tensor _workspace;
Pablo Tello52140b42018-01-30 14:48:11 +0000115 const ITensor *_input;
116 const ITensor *_weights;
117 ITensor *_output;
118 bool _reshaped_kernel;
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000119 bool _is_activationlayer_enabled;
Pablo Tello89519332017-11-17 11:52:36 +0000120};
121}
Georgios Pinitas9fb11592018-04-26 20:34:58 +0100122#endif /* __ARM_COMPUTE_NEWINOGRADCONVOLUTIONLAYER_H__ */