blob: 6019a84aba2b6e150a35b0475f4f95b9ca66b938 [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"
30#include "src/core/CL/ICLKernel.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010031#include "src/gpu/cl/operators/ClFill.h"
Kurtis Charnock9afc41a2019-11-11 17:24:37 +000032
33#include <utility>
34
35namespace arm_compute
36{
Sheri Zhang7e20e292021-02-02 11:49:34 +000037struct CLFill::Impl
Kurtis Charnock9afc41a2019-11-11 17:24:37 +000038{
Sheri Zhang7e20e292021-02-02 11:49:34 +000039 const ICLTensor *src{ nullptr };
40 ICLTensor *dst{ nullptr };
41 std::unique_ptr<opencl::ClFill> op{ nullptr };
42};
43
44CLFill::CLFill()
45 : _impl(std::make_unique<Impl>())
46{
47}
48CLFill::CLFill(CLFill &&) = default;
49CLFill &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
Sheri Zhang7e20e292021-02-02 11:49:34 +000057void CLFill::configure(const CLCompileContext &compile_context, ICLTensor *tensor, const PixelValue &constant_value, Window *dst_window)
Manuel Bottini2b84be52020-04-08 10:15:51 +010058{
Sheri Zhang7e20e292021-02-02 11:49:34 +000059 ARM_COMPUTE_ERROR_ON_NULLPTR(tensor);
60
61 _impl->src = tensor;
62
63 _impl->op = std::make_unique<opencl::ClFill>();
64 _impl->op->configure(compile_context, _impl->src->info(), constant_value, dst_window);
65}
66
67Status CLFill::validate(const ITensorInfo *tensor, const PixelValue &constant_value, Window *dst_window)
68{
69 return opencl::ClFill::validate(tensor, constant_value, dst_window);
70}
71
72void CLFill::run()
73{
74 ITensorPack pack;
75 pack.add_tensor(TensorType::ACL_SRC, _impl->src);
76 _impl->op->run(pack);
Kurtis Charnock9afc41a2019-11-11 17:24:37 +000077}
78} // namespace arm_compute