blob: 9bd96a975eda2740799041b7a2e5f1e029621342 [file] [log] [blame]
Kurtis Charnock9afc41a2019-11-11 17:24:37 +00001/*
Sheri Zhang7e20e292021-02-02 11:49:34 +00002 * Copyright (c) 2019-2021 Arm Limited.
Kurtis Charnock9afc41a2019-11-11 17:24:37 +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/CLFill.h"
25
Sheri Zhang7e20e292021-02-02 11:49:34 +000026#include "arm_compute/core/CL/CLKernelLibrary.h"
27#include "arm_compute/core/CL/ICLTensor.h"
Kurtis Charnock9afc41a2019-11-11 17:24:37 +000028#include "arm_compute/core/Types.h"
Sheri Zhang7e20e292021-02-02 11:49:34 +000029#include "arm_compute/core/Validate.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010030
Sheri Zhang7e20e292021-02-02 11:49:34 +000031#include "src/core/CL/ICLKernel.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010032#include "src/gpu/cl/operators/ClFill.h"
Kurtis Charnock9afc41a2019-11-11 17:24:37 +000033
34#include <utility>
35
36namespace arm_compute
37{
Sheri Zhang7e20e292021-02-02 11:49:34 +000038struct CLFill::Impl
Kurtis Charnock9afc41a2019-11-11 17:24:37 +000039{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010040 const ICLTensor *src{nullptr};
41 ICLTensor *dst{nullptr};
42 std::unique_ptr<opencl::ClFill> op{nullptr};
Sheri Zhang7e20e292021-02-02 11:49:34 +000043};
44
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045CLFill::CLFill() : _impl(std::make_unique<Impl>())
Sheri Zhang7e20e292021-02-02 11:49:34 +000046{
47}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010048CLFill::CLFill(CLFill &&) = default;
Sheri Zhang7e20e292021-02-02 11:49:34 +000049CLFill &CLFill::operator=(CLFill &&) = default;
50CLFill::~CLFill() = default;
51
52void CLFill::configure(ICLTensor *tensor, const PixelValue &constant_value, Window *dst_window)
53{
54 configure(CLKernelLibrary::get().get_compile_context(), tensor, constant_value, dst_window);
Manuel Bottini2b84be52020-04-08 10:15:51 +010055}
56
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010057void CLFill::configure(const CLCompileContext &compile_context,
58 ICLTensor *tensor,
59 const PixelValue &constant_value,
60 Window *dst_window)
Manuel Bottini2b84be52020-04-08 10:15:51 +010061{
Sheri Zhang7e20e292021-02-02 11:49:34 +000062 ARM_COMPUTE_ERROR_ON_NULLPTR(tensor);
63
64 _impl->src = tensor;
65
66 _impl->op = std::make_unique<opencl::ClFill>();
67 _impl->op->configure(compile_context, _impl->src->info(), constant_value, dst_window);
68}
69
70Status CLFill::validate(const ITensorInfo *tensor, const PixelValue &constant_value, Window *dst_window)
71{
72 return opencl::ClFill::validate(tensor, constant_value, dst_window);
73}
74
75void CLFill::run()
76{
77 ITensorPack pack;
78 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
79 _impl->op->run(pack);
Kurtis Charnock9afc41a2019-11-11 17:24:37 +000080}
81} // namespace arm_compute