blob: 2cf1f77fb4f444a2e378b5f2bbfd3805b5a26ae8 [file] [log] [blame]
Gian Marco Iodiced2fab732018-03-02 11:18:12 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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);
52 /** Set the input and output tensors.
53 *
54 * @note: This function only works with 3x3 kernels and unit strides
55 *
56 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
57 * while every optional dimension from 4 and above represent a batch of inputs.
58 * Data types supported: F32.
59 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
60 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].Data type supported: Same as @p input
61 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
62 * Data types supported: Same as @p input.
63 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000064 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000065 */
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000066 void configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info,
67 const ActivationLayerInfo &act_info = ActivationLayerInfo());
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000068 /** Static function to check if given info will lead to a valid configuration of @ref CLWinogradConvolutionLayer
69 *
70 * @note: This function only works with 3x3 kernels and unit strides
71 *
72 * @param[in] input Source tensor. 3 lower dimensions represent a single input [width, height, IFM],
73 * while every optional dimension from 4 and above represent a batch of inputs.
74 * Data types supported: F32.
75 * @param[in] weights Weights tensor. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM]. Data type supported:Same as @p input.
76 * @param[in] biases Biases tensor. Shared biases supported. Biases are 1D tensor with dimensions [OFM].Data type supported: Same as @p input
77 * @param[out] output Destination tensor. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
78 * Data types supported: Same as @p input.
79 * @param[in] conv_info Contains padding and stride information described in @ref PadStrideInfo.
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000080 * @param[in] act_info (Optional) Activation layer information in case of a fused activation.
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000081 *
82 * @return a status
83 */
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000084 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
85 const ActivationLayerInfo &act_info = ActivationLayerInfo());
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000086
87 // Inherited methods overridden:
88 void run() override;
89
90private:
91 CLMemoryGroup _memory_group;
92 CLGEMM _batched_mm;
93 CLWinogradInputTransform _input_transform;
94 CLWinogradFilterTransformKernel _filter_transform;
95 CLWinogradOutputTransformKernel _output_transform;
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000096 CLActivationLayer _activationlayer_function;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000097 CLTensor _input0;
98 CLTensor _input1;
99 CLTensor _batched_mm_output;
100 bool _is_first_run;
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000101 bool _is_activationlayer_enabled;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000102};
103}
104#endif /* __ARM_COMPUTE_CLWINOGRADCONVOLUTIONLAYER_H__ */