blob: 9ad6a35cc306903dfd7f83c0740462ae169f9614 [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
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010026#include "arm_compute/core/Validate.h"
Michalis Spyroubcd23522020-05-21 15:02:36 +010027#include "arm_compute/runtime/NEON/NEScheduler.h"
28#include "arm_compute/runtime/Types.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010029#include "src/core/NEON/kernels/NEReshapeLayerKernel.h"
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010030
31#include <utility>
32
Georgios Pinitas33843562019-12-10 13:33:18 +000033namespace arm_compute
34{
Michalis Spyroubcd23522020-05-21 15:02:36 +010035namespace experimental
36{
Michalis Spyrouebcebf12020-10-21 00:04:14 +010037NEReshape::~NEReshape() = default;
38
Georgios Pinitas09cad722020-07-22 12:11:20 +010039void NEReshape::configure(const ITensorInfo *input, ITensorInfo *output)
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010040{
Georgios Pinitas40f51a62020-11-21 03:04:18 +000041 auto k = std::make_unique<NEReshapeLayerKernel>();
Georgios Pinitas5ee66ea2017-09-07 17:29:16 +010042 k->configure(input, output);
43 _kernel = std::move(k);
44}
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010045
Georgios Pinitas09cad722020-07-22 12:11:20 +010046Status NEReshape::validate(const ITensorInfo *input, const ITensorInfo *output)
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010047{
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010048 return arm_compute::NEReshapeLayerKernel::validate(input, output);
Michalis Spyroubcd23522020-05-21 15:02:36 +010049}
Michalis Spyroubcd23522020-05-21 15:02:36 +010050} // namespace experimental
51
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010052struct NEReshapeLayer::Impl
53{
Georgios Pinitas09cad722020-07-22 12:11:20 +010054 const ITensor *src{ nullptr };
55 ITensor *dst{ nullptr };
56 std::unique_ptr<experimental::NEReshape> op{ nullptr };
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010057};
58
59NEReshapeLayer::NEReshapeLayer()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000060 : _impl(std::make_unique<Impl>())
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010061{
62}
63
64NEReshapeLayer::NEReshapeLayer(NEReshapeLayer &&) = default;
65
66NEReshapeLayer &NEReshapeLayer::operator=(NEReshapeLayer &&) = default;
67
68NEReshapeLayer::~NEReshapeLayer() = default;
69
Michalis Spyroubcd23522020-05-21 15:02:36 +010070void NEReshapeLayer::configure(const ITensor *input, ITensor *output)
71{
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010072 _impl->src = input;
73 _impl->dst = output;
Georgios Pinitas40f51a62020-11-21 03:04:18 +000074 _impl->op = std::make_unique<experimental::NEReshape>();
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010075 _impl->op->configure(input->info(), output->info());
Michalis Spyroubcd23522020-05-21 15:02:36 +010076}
77
78Status NEReshapeLayer::validate(const ITensorInfo *input, const ITensorInfo *output)
79{
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010080 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas09cad722020-07-22 12:11:20 +010081 ARM_COMPUTE_RETURN_ON_ERROR(experimental::NEReshape::validate(input, output));
Giuseppe Rossini6a90b692018-08-23 11:29:59 +010082
83 return Status{};
84}
Michalis Spyroubcd23522020-05-21 15:02:36 +010085
86void NEReshapeLayer::run()
87{
Georgios Pinitas0499dff2020-07-31 22:21:38 +010088 ITensorPack pack;
89 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
90 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
91 _impl->op->run(pack);
Michalis Spyroubcd23522020-05-21 15:02:36 +010092}
Matthew Bentham758b5ba2020-03-05 23:37:48 +000093} // namespace arm_compute