blob: 581fe7430941c16c51a4f1e9a30c60fd31a5d86c [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2017-2021 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NETRANSPOSE_H
25#define ARM_COMPUTE_NETRANSPOSE_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Teresa Charlind1dc09c2021-03-04 15:24:45 +000027#include "arm_compute/runtime/IFunction.h"
28
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Types.h"
Teresa Charlind1dc09c2021-03-04 15:24:45 +000030
31#include <memory>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032
33namespace arm_compute
34{
Teresa Charlind1dc09c2021-03-04 15:24:45 +000035// Forward declarations
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036class ITensor;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010037class ITensorInfo;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
Teresa Charlind1dc09c2021-03-04 15:24:45 +000039/** Basic function to run @ref cpu::kernels::CpuTransposeKernel */
40class NETranspose : public IFunction
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041{
42public:
Teresa Charlind1dc09c2021-03-04 15:24:45 +000043 /** Default Constructor */
44 NETranspose();
45 /** Default Destructor */
46 ~NETranspose();
47 /** Prevent instances of this class from being copied (As this class contains pointers) */
48 NETranspose(const NETranspose &) = delete;
49 /** Default move constructor */
50 NETranspose(NETranspose &&) = default;
51 /** Prevent instances of this class from being copied (As this class contains pointers) */
52 NETranspose &operator=(const NETranspose &) = delete;
53 /** Default move assignment operator */
54 NETranspose &operator=(NETranspose &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055 /** Initialise the kernel's inputs and output
56 *
Sheri Zhanga47dcc22021-04-22 14:41:12 +010057 * Valid data layouts:
58 * - All
59 *
60 * Valid data type configurations:
61 * |src |dst |
62 * |:------|:------|
63 * |All |All |
64 *
Georgios Pinitas33843562019-12-10 13:33:18 +000065 * @param[in] input Input tensor. Data types supported: All
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 * @param[out] output Output tensor. Data type supported: Same as @p input
67 */
68 void configure(const ITensor *input, ITensor *output);
Gian Marco7c435f22017-12-05 16:17:23 +000069 /** Static function to check if given info will lead to a valid configuration of @ref NETranspose
70 *
Georgios Pinitas33843562019-12-10 13:33:18 +000071 * @param[in] input The input tensor. Data types supported: All
Gian Marco7c435f22017-12-05 16:17:23 +000072 * @param[in] output The output tensor. Data types supported: Same as @p input
73 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +000074 * @return a status
Gian Marco7c435f22017-12-05 16:17:23 +000075 */
Georgios Pinitas631c41a2017-12-06 11:53:03 +000076 static Status validate(const ITensorInfo *input, const ITensorInfo *output);
Teresa Charlind1dc09c2021-03-04 15:24:45 +000077
78 // Inherited methods overridden
79 void run() override;
80
81private:
82 struct Impl;
83 std::unique_ptr<Impl> _impl;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084};
Michalis Spyrou95abfdd2018-11-28 14:59:47 +000085} // namespace arm_compute
Teresa Charlind1dc09c2021-03-04 15:24:45 +000086#endif /* ARM_COMPUTE_NETRANSPOSE_H */