blob: 64f10b4bd1456723f4c4053450d5eaddadf56c3b [file] [log] [blame]
Michalis Spyrou7362f0d2017-10-18 17:58:22 +01001/*
Georgios Pinitasf72f9362018-01-12 16:29:45 +00002 * Copyright (c) 2017-2018 ARM Limited.
Michalis Spyrou7362f0d2017-10-18 17:58:22 +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_NEDEPTHWISECONVOLUTIONKERNEL3x3_H__
25#define __ARM_COMPUTE_NEDEPTHWISECONVOLUTIONKERNEL3x3_H__
26
27#include "arm_compute/core/NEON/INEKernel.h"
Georgios Pinitas4074c992018-01-30 18:13:46 +000028#include "arm_compute/core/NEON/kernels/convolution/depthwise/depthwise.hpp"
29
30#include <memory>
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010031
32namespace arm_compute
33{
34class ITensor;
35
Georgios Pinitas4074c992018-01-30 18:13:46 +000036/** Interface for the kernel to run a 3x3 depthwise convolution on a tensor. */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000037class NEDepthwiseConvolutionLayer3x3Kernel : public INEKernel
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010038{
39public:
Anthony Barbiere8a49832018-01-18 10:04:05 +000040 const char *name() const override
41 {
42 return "NEDepthwiseConvolutionLayer3x3Kernel";
43 }
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010044 /** Default constructor */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000045 NEDepthwiseConvolutionLayer3x3Kernel();
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010046 /** Prevent instances of this class from being copied (As this class contains pointers) */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000047 NEDepthwiseConvolutionLayer3x3Kernel(const NEDepthwiseConvolutionLayer3x3Kernel &) = delete;
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010048 /** Prevent instances of this class from being copied (As this class contains pointers) */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000049 NEDepthwiseConvolutionLayer3x3Kernel &operator=(const NEDepthwiseConvolutionLayer3x3Kernel &) = delete;
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010050 /** Default Move Constructor. */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000051 NEDepthwiseConvolutionLayer3x3Kernel(NEDepthwiseConvolutionLayer3x3Kernel &&) = default;
Alex Gildayc357c472018-03-21 13:54:09 +000052 /** Default move assignment operator */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000053 NEDepthwiseConvolutionLayer3x3Kernel &operator=(NEDepthwiseConvolutionLayer3x3Kernel &&) = default;
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010054 /** Initialize the function's source, destination, conv and border_size.
55 *
Abe Mbise7784c832018-05-31 16:48:41 +010056 * @note Supported data layouts: NCHW and NHWC
57 *
Georgios Pinitas20c246a2018-09-12 16:45:53 +010058 * @param[in] input Source tensor. DataType supported: QASYMM8/F16/F32.
Abe Mbise7784c832018-05-31 16:48:41 +010059 * @param[in] weights Weights tensor. This is a 3D tensor with dimensions [3, 3, IFM] for NCHW or [IFM, 3, 3] if NHWC data layout. Data type supported: Same as @p input.
Giorgio Arena76572242018-04-04 17:44:26 +010060 * @param[out] output Destination tensor. Data type supported: Same as @p input.
61 * @param[in] conv_info Padding and stride information to use for the convolution.
62 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
63 * @param[in] data_layout (Optional) Data layout of the input and weights tensor
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010064 */
Giorgio Arena76572242018-04-04 17:44:26 +010065 void configure(const ITensor *input, const ITensor *weights, ITensor *output, const PadStrideInfo &conv_info, unsigned int depth_multiplier = 1, DataLayout data_layout = DataLayout::NCHW);
Georgios Pinitas4074c992018-01-30 18:13:46 +000066 /** Static method that checks if optimized execution is supported for the given parameters
67 *
Giorgio Arena76572242018-04-04 17:44:26 +010068 * @param[in] input_shape Input shape
69 * @param[in] conv_info Padding and stride information to use for the convolution.
70 * @param[in] dt Data type of the input and weights
Giorgio Arena76572242018-04-04 17:44:26 +010071 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
Abe Mbise7784c832018-05-31 16:48:41 +010072 * @param[in] data_layout (Optional) Data layout of the input and weights tensor
Georgios Pinitas4074c992018-01-30 18:13:46 +000073 *
74 * @return True if the optimized kernels can be executed else false
75 */
Giorgio Arena76572242018-04-04 17:44:26 +010076 static bool is_optimized_execution_possible(TensorShape input_shape, PadStrideInfo conv_info, DataType dt, unsigned int depth_multiplier = 1, DataLayout data_layout = DataLayout::NCHW);
Georgios Pinitas4074c992018-01-30 18:13:46 +000077 /** Generates the convolver object */
78 void generate_convolver();
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010079
Abe Mbise7784c832018-05-31 16:48:41 +010080 /** Static function to check if given info will lead to a valid configuration of @ref NEDepthwiseConvolutionLayer3x3Kernel
81 *
82 * @note Supported data layouts: NCHW and NHWC
83 *
Georgios Pinitas20c246a2018-09-12 16:45:53 +010084 * @param[in] input Source tensor. DataType supported: QASYMM8/F16/F32.
Abe Mbise7784c832018-05-31 16:48:41 +010085 * @param[in] weights Weights tensor. This is a 3D tensor with dimensions [3, 3, IFM] for NCHW or [IFM, 3, 3] if NHWC data layout. Data type supported: Same as @p input.
86 * @param[in] output Destination tensor. Data type supported: Same as @p input.
87 * @param[in] conv_info Padding and stride information to use for the convolution.
88 * @param[in] depth_multiplier (Optional) Multiplier to apply to the input's depth in order to retrieve the output's depth. Defaults to 1.
89 *
90 * @return a status
91 */
92 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *output, const PadStrideInfo &conv_info, unsigned int depth_multiplier = 1);
93
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010094 // Inherited methods overridden:
95 void run(const Window &window, const ThreadInfo &info) override;
96 BorderSize border_size() const override;
97
98private:
Georgios Pinitas4074c992018-01-30 18:13:46 +000099 void configure_generic();
100 void configure_optimized();
Abe Mbise7784c832018-05-31 16:48:41 +0100101
Georgios Pinitas4074c992018-01-30 18:13:46 +0000102 void run_generic(const Window &window, const ThreadInfo &info);
103 void run_optimized(const Window &window, const ThreadInfo &info);
Georgios Pinitasbe0ae932018-03-13 13:08:12 +0000104 /** Creates an optimized backend convolver object
105 *
106 * @note Convolver of strides 1,2 and convolution size of 3 is currently supported
107 *
108 * @param[in] conv_info Padding and stride information to use for the convolution
109 * @param[in] w Weights tensor
110 * @param[in] in Input tensor
111 * @param[in] out Output tensor
112 * @param[in] setup_strides (Optional) Boolean to enable setting the strides of the tensors
113 * in the convolver in case of padding. Defaults to false
114 *
115 * @return A convolver object or nullptr if the configuration is not supported
116 */
117 std::unique_ptr<depthwise::IDepthwiseConvolution> create_convolver_object(PadStrideInfo conv_info,
118 const ITensor *w,
119 const ITensor *in,
120 ITensor *out,
121 bool setup_strides = false);
Georgios Pinitas4074c992018-01-30 18:13:46 +0000122
123private:
124 BorderSize _border_size;
125 const ITensor *_input;
126 ITensor *_output;
127 const ITensor *_weights;
128 PadStrideInfo _conv_info;
129 std::unique_ptr<depthwise::IDepthwiseConvolution> _convolver;
130 unsigned int _num_elems_written_per_iteration;
131 bool _run_optimized;
Giorgio Arena76572242018-04-04 17:44:26 +0100132 unsigned int _depth_multiplier;
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100133};
134} // namespace arm_compute
Anthony Barbiere8a49832018-01-18 10:04:05 +0000135#endif /* __ARM_COMPUTE_NEDEPTHWISECONVOLUTIONKERNEL3x3_H__ */