blob: 2c17473fc717279aab627848ed6153ba61c6b7f7 [file] [log] [blame]
Michalis Spyrou780db4e2017-11-23 09:49:51 +00001/*
giuros01a69a88b2019-01-31 16:29:19 +00002 * Copyright (c) 2017-2019 ARM Limited.
Michalis Spyrou780db4e2017-11-23 09:49:51 +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 */
24#include "arm_compute/runtime/CL/functions/CLDeconvolutionLayer.h"
25
Michalis Spyrou780db4e2017-11-23 09:49:51 +000026#include "arm_compute/core/Utils.h"
27#include "arm_compute/core/Validate.h"
28#include "arm_compute/core/utils/misc/ShapeCalculator.h"
giuros014a8ec802019-03-18 13:25:05 +000029#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010030#include "arm_compute/runtime/CL/CLScheduler.h"
Michalis Spyrou780db4e2017-11-23 09:49:51 +000031
giuros014a8ec802019-03-18 13:25:05 +000032#include <cmath>
Michalis Spyrou780db4e2017-11-23 09:49:51 +000033#include <memory>
34#include <tuple>
35
36using namespace arm_compute;
37using namespace arm_compute::misc::shape_calculator;
38
giuros014a8ec802019-03-18 13:25:05 +000039CLDeconvolutionLayer::CLDeconvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager)
40 : _memory_manager(std::move(memory_manager)), _function()
Michalis Spyrou780db4e2017-11-23 09:49:51 +000041{
42}
43
giuros014a8ec802019-03-18 13:25:05 +000044void CLDeconvolutionLayer::configure(ICLTensor *input, ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const PadStrideInfo &deconv_info,
45 unsigned int inner_border_right, unsigned int inner_border_top, const WeightsInfo &weights_info)
46{
47 ARM_COMPUTE_UNUSED(inner_border_right, inner_border_top);
48 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, output);
49 auto f = arm_compute::support::cpp14::make_unique<CLDirectDeconvolutionLayer>();
50 f->configure(input, weights, bias, output, deconv_info, weights_info);
51 _function = std::move(f);
52}
53
54Status CLDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &deconv_info,
Michele Di Giorgio70ba7d62018-06-06 17:03:36 +010055 unsigned int inner_border_right, unsigned int inner_border_top, const WeightsInfo &weights_info)
Michalis Spyrou780db4e2017-11-23 09:49:51 +000056{
57 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, output);
giuros014a8ec802019-03-18 13:25:05 +000058 ARM_COMPUTE_UNUSED(inner_border_right, inner_border_top);
59 ARM_COMPUTE_RETURN_ON_ERROR(CLDirectDeconvolutionLayer::validate(input, weights, bias, output, deconv_info, weights_info));
Michalis Spyrou780db4e2017-11-23 09:49:51 +000060 return Status{};
61}
62
giuros014a8ec802019-03-18 13:25:05 +000063void CLDeconvolutionLayer::configure(ICLTensor *input, ICLTensor *weights, const ICLTensor *bias, ICLTensor *output, const PadStrideInfo &deconv_info,
giuros01a69a88b2019-01-31 16:29:19 +000064 const WeightsInfo &weights_info)
65{
giuros014a8ec802019-03-18 13:25:05 +000066 configure(input, weights, bias, output, deconv_info, 0, 0, weights_info);
giuros01a69a88b2019-01-31 16:29:19 +000067}
68
giuros014a8ec802019-03-18 13:25:05 +000069Status CLDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, ITensorInfo *output, const PadStrideInfo &deconv_info,
giuros01a69a88b2019-01-31 16:29:19 +000070 const WeightsInfo &weights_info)
71{
giuros014a8ec802019-03-18 13:25:05 +000072 return CLDeconvolutionLayer::validate(input, weights, bias, output, deconv_info, 0, 0, weights_info);
giuros01a69a88b2019-01-31 16:29:19 +000073}
74
Michalis Spyrou780db4e2017-11-23 09:49:51 +000075void CLDeconvolutionLayer::run()
76{
Georgios Pinitas72219332018-06-05 14:56:06 +010077 prepare();
giuros014a8ec802019-03-18 13:25:05 +000078 _function->run();
Michalis Spyrou780db4e2017-11-23 09:49:51 +000079}
Georgios Pinitas72219332018-06-05 14:56:06 +010080
81void CLDeconvolutionLayer::prepare()
82{
giuros014a8ec802019-03-18 13:25:05 +000083 _function->prepare();
Georgios Pinitas72219332018-06-05 14:56:06 +010084}