blob: e8aaf85876319c1f66aed9e39a74650929446527 [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 */
24#include "arm_compute/runtime/CL/functions/CLCopy.h"
25
Sheri Zhang7e20e292021-02-02 11:49:34 +000026#include "arm_compute/core/CL/CLKernelLibrary.h"
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000027#include "arm_compute/core/CL/ICLTensor.h"
Sheri Zhang7e20e292021-02-02 11:49:34 +000028#include "arm_compute/core/Types.h"
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000029#include "arm_compute/core/Validate.h"
Sheri Zhang7e20e292021-02-02 11:49:34 +000030#include "src/core/CL/ICLKernel.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010031#include "src/gpu/cl/operators/ClCopy.h"
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000032
33#include <utility>
34
Sheri Zhang7e20e292021-02-02 11:49:34 +000035namespace arm_compute
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000036{
Sheri Zhang7e20e292021-02-02 11:49:34 +000037struct CLCopy::Impl
38{
39 const ICLTensor *src{ nullptr };
40 ICLTensor *dst{ nullptr };
41 std::unique_ptr<opencl::ClCopy> op{ nullptr };
42};
43
44CLCopy::CLCopy()
45 : _impl(std::make_unique<Impl>())
46{
47}
48CLCopy::CLCopy(CLCopy &&) = default;
49CLCopy &CLCopy::operator=(CLCopy &&) = default;
50CLCopy::~CLCopy() = default;
51
52void CLCopy::configure(ICLTensor *input, ICLTensor *output, Window *dst_window)
53{
54 configure(CLKernelLibrary::get().get_compile_context(), input, output, dst_window);
Manuel Bottini2b84be52020-04-08 10:15:51 +010055}
56
Sheri Zhang7e20e292021-02-02 11:49:34 +000057void CLCopy::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, Window *dst_window)
Manuel Bottini2b84be52020-04-08 10:15:51 +010058{
Sheri Zhang7e20e292021-02-02 11:49:34 +000059 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
60
61 _impl->src = input;
62 _impl->dst = output;
63
64 _impl->op = std::make_unique<opencl::ClCopy>();
65 _impl->op->configure(compile_context, _impl->src->info(), _impl->dst->info(), dst_window);
Michalis Spyrou5c8e05c2018-03-22 11:56:01 +000066}
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010067
Sheri Zhang7e20e292021-02-02 11:49:34 +000068Status CLCopy::validate(const ITensorInfo *input, const ITensorInfo *output, Window *dst_window)
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010069{
Sheri Zhang7e20e292021-02-02 11:49:34 +000070 return opencl::ClCopy::validate(input, output, dst_window);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010071}
Sheri Zhang7e20e292021-02-02 11:49:34 +000072
73void CLCopy::run()
74{
75 ITensorPack pack;
76 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
77 pack.add_tensor(TensorType::ACL_DST, _impl->dst);
78 _impl->op->run(pack);
79}
80} // namespace arm_compute