blob: 2b866b532c6ee19190125e6fa447757949708030 [file] [log] [blame]
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2017-2020 ARM Limited.
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +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/NEReshapeLayer.h"
25
26#include "arm_compute/core/NEON/kernels/NEReshapeLayerKernel.h"
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010027#include "arm_compute/core/Validate.h"
Michalis Spyroubcd23522020-05-21 15:02:36 +010028#include "arm_compute/runtime/NEON/NEScheduler.h"
29#include "arm_compute/runtime/Types.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000030#include "support/MemorySupport.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010031
32#include <utility>
33
Georgios Pinitas33843562019-12-10 13:33:18 +000034namespace arm_compute
35{
Michalis Spyroubcd23522020-05-21 15:02:36 +010036namespace experimental
37{
38void NEReshapeLayer::configure(const ITensorInfo *input, ITensorInfo *output)
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010039{
40 auto k = arm_compute::support::cpp14::make_unique<NEReshapeLayerKernel>();
41 k->configure(input, output);
42 _kernel = std::move(k);
43}
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010044
45Status NEReshapeLayer::validate(const ITensorInfo *input, const ITensorInfo *output)
46{
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010047 return arm_compute::NEReshapeLayerKernel::validate(input, output);
Michalis Spyroubcd23522020-05-21 15:02:36 +010048}
49
50MemoryRequirements NEReshapeLayer::workspace() const
51{
52 return MemoryRequirements{};
53}
54} // namespace experimental
55
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010056struct NEReshapeLayer::Impl
57{
58 const ITensor *src{ nullptr };
59 ITensor *dst{ nullptr };
60 std::unique_ptr<experimental::NEReshapeLayer> op{ nullptr };
61};
62
63NEReshapeLayer::NEReshapeLayer()
64 : _impl(support::cpp14::make_unique<Impl>())
65{
66}
67
68NEReshapeLayer::NEReshapeLayer(NEReshapeLayer &&) = default;
69
70NEReshapeLayer &NEReshapeLayer::operator=(NEReshapeLayer &&) = default;
71
72NEReshapeLayer::~NEReshapeLayer() = default;
73
Michalis Spyroubcd23522020-05-21 15:02:36 +010074void NEReshapeLayer::configure(const ITensor *input, ITensor *output)
75{
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010076 _impl->src = input;
77 _impl->dst = output;
78 _impl->op = arm_compute::support::cpp14::make_unique<experimental::NEReshapeLayer>();
79 _impl->op->configure(input->info(), output->info());
Michalis Spyroubcd23522020-05-21 15:02:36 +010080}
81
82Status NEReshapeLayer::validate(const ITensorInfo *input, const ITensorInfo *output)
83{
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010084 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010085 ARM_COMPUTE_RETURN_ON_ERROR(experimental::NEReshapeLayer::validate(input, output));
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010086
87 return Status{};
88}
Michalis Spyroubcd23522020-05-21 15:02:36 +010089
90void NEReshapeLayer::run()
91{
Michalis Spyrouce0c6752020-06-18 10:14:57 +010092 const InputTensorMap src{ { TensorType::ACL_SRC, _impl->src } };
93 const OutputTensorMap dst{ { TensorType::ACL_DST, _impl->dst } };
94
95 _impl->op->run(src, dst, {});
Michalis Spyroubcd23522020-05-21 15:02:36 +010096}
Matthew Bentham758b5ba2020-03-05 23:37:48 +000097} // namespace arm_compute