blob: bb46a49f84247be649c4ac34edd1ef1a85d45895 [file] [log] [blame]
Giuseppe Rossinid7647d42018-07-17 18:13:13 +01001/*
Michele Di Giorgiof6f78762020-07-06 11:27:21 +01002 * Copyright (c) 2018-2020 Arm Limited.
Giuseppe Rossinid7647d42018-07-17 18:13:13 +01003 *
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 "helpers.h"
25
26#if defined(DATA_TYPE) && defined(CONSTANT_VALUE) // Check for compile time constants
27
28/** Fill the tensor's planes with all value
29 * @attention The following variables must be passed at compile time:
30 * -# -DDATA_TYPE = Tensor data type. Supported data types: U8/S8/QASYMM8/U16/S16/F16/U32/S32/F32
31 * -# -DCONSTANT_VALUE = The value use to fill the tensor's planes
32 * -# -DVEC_SIZE = Vector size
33 * -# -DLAST_ACCESSED_X = The element that is on the X border (threads trying to set this, might need to step back a bit)
34 *
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010035 * @param[in] tensor_ptr Pointer to the source image. Data types supported: All.
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010036 * @param[in] tensor_stride_x Stride of the source image in X dimension (in bytes)
37 * @param[in] tensor_step_x tensor_stride_x * number of elements along X processed per workitem(in bytes)
38 * @param[in] tensor_stride_y Stride of the source image in Y dimension (in bytes)
39 * @param[in] tensor_step_y tensor_stride_y * number of elements along Y processed per workitem(in bytes)
40 * @param[in] tensor_offset_first_element_in_bytes The offset of the first element in the source image
41 * @param[in] value The value used to fill the pages of the tensor
42 */
43__kernel void memset(
George Wort894066d2019-02-15 15:12:52 +000044 TENSOR3D_DECLARATION(tensor))
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010045{
George Wort894066d2019-02-15 15:12:52 +000046 Tensor3D tensor = CONVERT_TO_TENSOR3D_STRUCT(tensor);
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010047
George Wort894066d2019-02-15 15:12:52 +000048#if defined(VEC_SIZE)
49
50#if defined(LAST_ACCESSED_X)
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010051 // Check if access on width gets out of bounds
52 // If it does shift access vector to access elements within bounds
53 const int xi = (int)(get_global_id(0) * VEC_SIZE);
54 tensor.ptr -= max(xi - (int)LAST_ACCESSED_X, 0) * tensor_stride_x;
George Wort894066d2019-02-15 15:12:52 +000055#endif // defined(LAST_ACCESSED_X)
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010056
57 VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
58 data = (DATA_TYPE)(CONSTANT_VALUE);
59
60 VSTORE(VEC_SIZE)
61 (data, 0, (__global DATA_TYPE *)tensor.ptr);
George Wort894066d2019-02-15 15:12:52 +000062#else // !defined(VEC_SIZE)
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010063 *((__global DATA_TYPE *)(tensor.ptr)) = (DATA_TYPE)(CONSTANT_VALUE);
George Wort894066d2019-02-15 15:12:52 +000064#endif // defined(VEC_SIZE)
Giuseppe Rossinid7647d42018-07-17 18:13:13 +010065}
66
67#endif // Check for compile time constants