blob: fd40b7b9de6b400649c945d7f2b3660eedecc487 [file] [log] [blame]
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +00001/*
Sheri Zhang7e20e292021-02-02 11:49:34 +00002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +00003 *
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_CLCOPY_H
25#define ARM_COMPUTE_CLCOPY_H
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000026
27#include "arm_compute/core/Types.h"
Sheri Zhang7e20e292021-02-02 11:49:34 +000028#include "arm_compute/core/Window.h"
29#include "arm_compute/runtime/IFunction.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010030
Sheri Zhang7e20e292021-02-02 11:49:34 +000031#include <memory>
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000032
33namespace arm_compute
34{
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010035class CLCompileContext;
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000036class ICLTensor;
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010037class ITensorInfo;
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000038
Sheri Zhang7e20e292021-02-02 11:49:34 +000039/** Basic function to run @ref opencl::kernels::ClCopyKernel */
40class CLCopy : public IFunction
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000041{
42public:
Sheri Zhang7e20e292021-02-02 11:49:34 +000043 /** Constructor */
44 CLCopy();
45 /** Destructor */
46 ~CLCopy();
47 /** Prevent instances of this class from being copied (As this class contains pointers) */
48 CLCopy(const CLCopy &) = delete;
49 /** Default move constructor */
50 CLCopy(CLCopy &&);
51 /** Prevent instances of this class from being copied (As this class contains pointers) */
52 CLCopy &operator=(const CLCopy &) = delete;
53 /** Default move assignment operator */
54 CLCopy &operator=(CLCopy &&);
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000055 /** Initialise the function's source and destination.
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 *
Sheri Zhang7e20e292021-02-02 11:49:34 +000065 * @param[in] input Source tensor. Data types supported: All.
66 * @param[out] output Output tensor. Data types supported: Same as @p input.
67 * @param[in] dst_window (Optional) Window to be used in case only copying into part of a tensor. Default is nullptr.
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000068 */
Sheri Zhang7e20e292021-02-02 11:49:34 +000069 void configure(ICLTensor *input, ICLTensor *output, Window *dst_window = nullptr);
Manuel Bottini2b84be52020-04-08 10:15:51 +010070 /** Initialise the function's source and destination.
71 *
72 * @param[in] compile_context The compile context to be used.
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010073 * @param[in] input Source tensor. Data types supported: All.
Manuel Bottini2b84be52020-04-08 10:15:51 +010074 * @param[out] output Output tensor. Data types supported: Same as @p input.
Sheri Zhang7e20e292021-02-02 11:49:34 +000075 * @param[in] dst_window (Optional) Window to be used in case only copying into part of a tensor. Default is nullptr.
Manuel Bottini2b84be52020-04-08 10:15:51 +010076 *
77 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010078 void configure(const CLCompileContext &compile_context,
79 ICLTensor *input,
80 ICLTensor *output,
81 Window *dst_window = nullptr);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010082 /** Static function to check if given info will lead to a valid configuration of @ref CLCopy
83 *
Sheri Zhang7e20e292021-02-02 11:49:34 +000084 * @param[in] input Source tensor. Data types supported: All.
85 * @param[in] output Output tensor. Data types supported: Same as @p input.
86 * @param[in] dst_window (Optional) Window to be used in case only copying into part of a tensor. Default is nullptr.
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010087 *
88 * @return a status
89 */
Sheri Zhang7e20e292021-02-02 11:49:34 +000090 static Status validate(const ITensorInfo *input, const ITensorInfo *output, Window *dst_window = nullptr);
91
92 // Inherited methods overridden:
93 void run() override;
94
95private:
96 struct Impl;
97 std::unique_ptr<Impl> _impl;
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000098};
99} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000100#endif /*ARM_COMPUTE_CLCOPY_H */