blob: eb777f19252735c699fb93c87785cdf8f077b00b [file] [log] [blame]
David Svantesson3b162e52023-03-28 14:13:32 +00001/*
2 * Copyright (c) 2023 Arm Limited.
3 *
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 */
David Svantessoncd8b40d2023-05-02 13:05:36 +000024#if defined(__aarch64__)
25
David Svantesson3b162e52023-03-28 14:13:32 +000026#ifndef ACL_ARM_COMPUTE_RUNTIME_NEON_FUNCTIONS_NEREORDERLAYER
27#define ACL_ARM_COMPUTE_RUNTIME_NEON_FUNCTIONS_NEREORDERLAYER
28
29#include "arm_compute/core/Types.h"
30#include "arm_compute/runtime/IFunction.h"
David Svantesson3b162e52023-03-28 14:13:32 +000031
32namespace arm_compute
33{
34class ITensor;
35class ITensorInfo;
Ramy Elgammal318782b2023-05-10 14:33:30 +010036class NEReorderKernel;
David Svantesson3b162e52023-03-28 14:13:32 +000037/** Function to compute blocked reorder. */
38class NEReorderLayer : public IFunction
39{
40public:
41 /** Default constructor */
42 NEReorderLayer();
43 /** Prevent instances of this class from being copied (As this class contains pointers) */
44 NEReorderLayer(const NEReorderLayer &) = delete;
45 /** Prevent instances of this class from being copied (As this class contains pointers) */
46 NEReorderLayer &operator=(const NEReorderLayer &) = delete;
47 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
48 NEReorderLayer(NEReorderLayer &&) = delete;
49 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
50 NEReorderLayer &operator=(NEReorderLayer &&) = delete;
51 /** Default destructor */
David Svantesson54b41a32023-06-08 12:14:01 +000052 ~NEReorderLayer();
David Svantesson3b162e52023-03-28 14:13:32 +000053 /** Set the input and output tensors.
54 *
55 * Valid data layouts:
56 * - NCHW
57 *
58 * Valid data type configurations:
59 * |src |dst |
60 * |:--------|:---------|
61 * |F32 |F32 |
62 *
63 * @param[in] input Source tensor. Data type supported: F32. Data layouts supported: NCHW.
64 * @param[out] output Destination with the same dimensions, data type, data layout as @p input
65 * except last dimension of data layout which needs to be multiple of blocking parameter ksize
66 * @param[in] input_wf WeightFormat of input.
67 * @param[in] output_wf WeightFormat of output.
68 */
69 void configure(const ITensor *input, ITensor *output, arm_compute::WeightFormat input_wf, arm_compute::WeightFormat output_wf);
70
71 /** Static function to check if given info will lead to a valid configuration of @ref NEReorderLayer
72 *
73 * Similar to @ref NEReorderLayer::configure()
74 *
75 * @return a status
76 */
77 static Status validate(const ITensorInfo *input, const ITensorInfo *output, arm_compute::WeightFormat input_wf, arm_compute::WeightFormat output_wf);
78
79 // Inherited methods overridden:
80 void run() override;
81
82private:
83 std::unique_ptr<NEReorderKernel> _reorder_kernel; /**< Reorder layer kernel */
84};
85} // namespace arm_compute
86#endif /* ACL_ARM_COMPUTE_RUNTIME_NEON_FUNCTIONS_NEREORDERLAYER */
David Svantessoncd8b40d2023-05-02 13:05:36 +000087
88#endif // defined(__aarch64__)