blob: 0ad4babedccff43fd7226c17b6f58bddafb0ac56 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Isabella Gottardie6630e42018-01-18 15:50:39 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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#include "arm_compute/runtime/NEON/functions/NEConvolutionLayer.h"
25
26#include "arm_compute/core/PixelValue.h"
27#include "arm_compute/core/Utils.h"
28#include "arm_compute/core/Validate.h"
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010029#include "support/ToolchainSupport.h"
30
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include <cmath>
32#include <tuple>
Georgios Pinitasd8734b52017-12-22 15:27:52 +000033#include <utility>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010035namespace arm_compute
36{
Anthony Barbier61b4fca2018-03-29 11:31:55 +010037NEConvolutionLayer::NEConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager) //NOLINT
38 : _memory_manager(std::move(memory_manager)),
39 _function()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040{
41}
42
Alex Gilday7da29b62018-03-23 14:16:00 +000043void NEConvolutionLayer::configure(ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info, const WeightsInfo &weights_info,
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000044 const Size2D &dilation, const ActivationLayerInfo &act_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045{
Giorgio Arena7c23ad02017-11-30 15:08:38 +000046 // Perform validate step
47 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000048 ARM_COMPUTE_ERROR_THROW_ON(NEConvolutionLayer::validate(input->info(), weights->info(), ((biases != nullptr) ? biases->info() : nullptr), output->info(), conv_info, weights_info, dilation, act_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049
Andrew Mundy4d9379a2018-03-15 16:47:03 +000050 switch(NEConvolutionLayer::get_convolution_method(input->info(), weights->info(), output->info(), conv_info, weights_info, dilation, act_info))
Moritz Pflanzer80373f62017-09-15 10:42:58 +010051 {
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000052 case ConvolutionMethod::WINOGRAD:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 {
Georgios Pinitas9fb11592018-04-26 20:34:58 +010054 auto f = arm_compute::support::cpp14::make_unique<NEWinogradConvolutionLayer>(_memory_manager);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000055 f->configure(input, weights, biases, output, conv_info, act_info);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000056 _function = std::move(f);
57 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000059 case ConvolutionMethod::GEMM:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010060 {
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000061 auto f = arm_compute::support::cpp14::make_unique<NEGEMMConvolutionLayer>(_memory_manager);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000062 f->configure(input, weights, biases, output, conv_info, weights_info, dilation, act_info);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000063 _function = std::move(f);
64 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000066 case ConvolutionMethod::DIRECT:
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010067 {
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000068 auto f = arm_compute::support::cpp14::make_unique<NEDirectConvolutionLayer>(_memory_manager);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000069 f->configure(input, weights, biases, output, conv_info, act_info);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000070 _function = std::move(f);
71 break;
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010072 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000073 default:
74 ARM_COMPUTE_ERROR("Not supported.");
75 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077}
78
Giorgio Arena7c23ad02017-11-30 15:08:38 +000079Status NEConvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *output, const PadStrideInfo &conv_info,
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000080 const WeightsInfo &weights_info, const Size2D &dilation, const ActivationLayerInfo &act_info)
Giorgio Arena7c23ad02017-11-30 15:08:38 +000081{
Andrew Mundy4d9379a2018-03-15 16:47:03 +000082 switch(NEConvolutionLayer::get_convolution_method(input, weights, output, conv_info, weights_info, dilation, act_info))
Giorgio Arena7c23ad02017-11-30 15:08:38 +000083 {
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000084 case ConvolutionMethod::WINOGRAD:
85 //Validate Winograd
Georgios Pinitas9fb11592018-04-26 20:34:58 +010086 NEWinogradConvolutionLayer::validate(input, weights, biases, output, conv_info, act_info);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000087 break;
88 case ConvolutionMethod::GEMM:
89 //Validate Gemm-based Convolution
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000090 NEGEMMConvolutionLayer::validate(input, weights, biases, output, conv_info, weights_info, dilation, act_info);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000091 break;
92 case ConvolutionMethod::DIRECT:
93 //Validate Gemm-based Convolution
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000094 NEDirectConvolutionLayer::validate(input, weights, biases, output, conv_info, act_info);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +000095 default:
96 ARM_COMPUTE_ERROR("Not supported.");
97 break;
Giorgio Arena7c23ad02017-11-30 15:08:38 +000098 }
Giorgio Arena7c23ad02017-11-30 15:08:38 +000099
100 return Status{};
101}
102
Andrew Mundy4d9379a2018-03-15 16:47:03 +0000103ConvolutionMethod NEConvolutionLayer::get_convolution_method(const ITensorInfo *input, const ITensorInfo *weights,
104 const ITensorInfo *output, const PadStrideInfo &conv_info,
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000105 const WeightsInfo &weights_info, const Size2D &dilation, const ActivationLayerInfo &act_info)
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000106{
Andrew Mundy4d9379a2018-03-15 16:47:03 +0000107 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
108 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
109 ARM_COMPUTE_ERROR_ON_NULLPTR(weights);
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000110 ARM_COMPUTE_UNUSED(output);
111 ARM_COMPUTE_UNUSED(weights_info);
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000112
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100113 const size_t idx_w = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
114 const size_t idx_h = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
115
116 if((input->data_type() == DataType::F32) && (input->data_layout() == DataLayout::NCHW) && (weights->dimension(idx_w) == 3) && (weights->dimension(idx_h) == 3) && (weights->num_dimensions() <= 4)
117 && (conv_info.stride().first == 1) && (conv_info.stride().second == 1) && (dilation == Size2D(1U, 1U)) && (!act_info.enabled()))
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000118 {
Anthony Barbier95a3f552018-04-16 11:48:56 +0100119 //FIXME Until COMPMID-1041 is implemented Winograd is slower than GEMM on A53.
120 if(Scheduler::get().cpu_info().get_cpu_model() != CPUModel::A53)
121 {
122 return ConvolutionMethod::WINOGRAD;
123 }
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000124 }
125 return ConvolutionMethod::GEMM;
126}
127
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128void NEConvolutionLayer::run()
129{
Isabella Gottardi6acc6ad2018-02-02 17:19:18 +0000130 _function->run();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131}
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100132} // namespace arm_compute