blob: 754da97ae1c719f3b5daa2db51f5a5b88f997340 [file] [log] [blame]
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +00001/*
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/cpu/kernels/CpuFillKernel.h"
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000025
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000026#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/Utils.h"
29#include "arm_compute/core/Validate.h"
30#include "arm_compute/core/Window.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010031
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/helpers/AutoConfiguration.h"
33#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000034
35namespace arm_compute
36{
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000037namespace cpu
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000038{
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000039namespace kernels
40{
41void CpuFillKernel::configure(const ITensorInfo *tensor, const PixelValue &constant_value)
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000042{
43 ARM_COMPUTE_ERROR_ON_NULLPTR(tensor);
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000044 _constant_value = constant_value;
45
46 // Configure kernel window
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000047 Window win = calculate_max_window(*tensor, Steps());
48 ICpuKernel::configure(win);
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000049}
50
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000051void CpuFillKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000052{
53 ARM_COMPUTE_UNUSED(info);
54 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000055 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICpuKernel::window(), window);
56
57 auto inout = tensors.get_tensor(TensorType::ACL_SRC_DST);
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000058
59 // Collapse all the batches on the third dimension
60 bool has_collapsed = true;
61 Window collapsed = window.collapse_if_possible(window, Window::DimZ, &has_collapsed);
62 ARM_COMPUTE_ERROR_ON(!has_collapsed);
63
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000064 uint8_t *const start_valid_region = inout->ptr_to_element(inout->info()->valid_region().anchor);
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000065 const auto window_width = static_cast<int>(collapsed.x().end()) - static_cast<int>(collapsed.x().start());
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000066 const size_t element_size = inout->info()->element_size();
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000067
68 // Unroll X dimension
69 collapsed.set(Window::DimX, Window::Dimension(0, 1, 1));
70
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000071 Iterator tensor_it(inout, collapsed);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010072 execute_window_loop(
73 collapsed,
74 [&](const Coordinates &)
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000075 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010076 uint8_t *base_addr = start_valid_region + tensor_it.offset();
77 // Set memory
78 for (int i = 0; i < window_width; ++i)
79 {
80 std::memcpy(base_addr + i * element_size, &_constant_value.value, element_size);
81 }
82 },
83 tensor_it);
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000084}
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000085
86const char *CpuFillKernel::name() const
87{
88 return "CpuFillKernel";
89}
90} // namespace kernels
91} // namespace cpu
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +000092} // namespace arm_compute