blob: c1c88c1c7af5994ace310440320ffe4d3ad7db87 [file] [log] [blame]
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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{
Georgios Pinitas09cad722020-07-22 12:11:20 +010038void NEReshape::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
Georgios Pinitas09cad722020-07-22 12:11:20 +010045Status NEReshape::validate(const ITensorInfo *input, const ITensorInfo *output)
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010046{
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010047 return arm_compute::NEReshapeLayerKernel::validate(input, output);
Michalis Spyroubcd23522020-05-21 15:02:36 +010048}
Michalis Spyroubcd23522020-05-21 15:02:36 +010049} // namespace experimental
50
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010051struct NEReshapeLayer::Impl
52{
Georgios Pinitas09cad722020-07-22 12:11:20 +010053 const ITensor *src{ nullptr };
54 ITensor *dst{ nullptr };
55 std::unique_ptr<experimental::NEReshape> op{ nullptr };
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010056};
57
58NEReshapeLayer::NEReshapeLayer()
59 : _impl(support::cpp14::make_unique<Impl>())
60{
61}
62
63NEReshapeLayer::NEReshapeLayer(NEReshapeLayer &&) = default;
64
65NEReshapeLayer &NEReshapeLayer::operator=(NEReshapeLayer &&) = default;
66
67NEReshapeLayer::~NEReshapeLayer() = default;
68
Michalis Spyroubcd23522020-05-21 15:02:36 +010069void NEReshapeLayer::configure(const ITensor *input, ITensor *output)
70{
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010071 _impl->src = input;
72 _impl->dst = output;
Georgios Pinitas09cad722020-07-22 12:11:20 +010073 _impl->op = arm_compute::support::cpp14::make_unique<experimental::NEReshape>();
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010074 _impl->op->configure(input->info(), output->info());
Michalis Spyroubcd23522020-05-21 15:02:36 +010075}
76
77Status NEReshapeLayer::validate(const ITensorInfo *input, const ITensorInfo *output)
78{
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010079 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas09cad722020-07-22 12:11:20 +010080 ARM_COMPUTE_RETURN_ON_ERROR(experimental::NEReshape::validate(input, output));
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010081
82 return Status{};
83}
Michalis Spyroubcd23522020-05-21 15:02:36 +010084
85void NEReshapeLayer::run()
86{
Georgios Pinitas0499dff2020-07-31 22:21:38 +010087 ITensorPack pack;
88 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
89 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
90 _impl->op->run(pack);
Michalis Spyroubcd23522020-05-21 15:02:36 +010091}
Matthew Bentham758b5ba2020-03-05 23:37:48 +000092} // namespace arm_compute