blob: 6d1c2d0c796299c0fc877ce9f1333f4a2d6b6200 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Giorgio Arenaada6cbc2021-04-16 17:03:39 +01002 * Copyright (c) 2016-2021 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +010026#if defined(SATURATE)
27#define CONVERT_OP_INT_STR(x, type, size) (convert_##type##size##_sat(x))
28#else // SATURATE
29#define CONVERT_OP_INT_STR(x, type, size) (convert_##type##size(x))
30#endif // SATURATE
31#define CONVERT_OP_INT(x, type, size) CONVERT_OP_INT_STR(x, type, size)
32
33#define MUL_OP(x, y, scale, type, size) CONVERT_OP_INT((x) * (y) >> scale, type, size)
34
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +010035#define CONVERT_RTE(x, type) (convert_##type##_rte((x)))
36#define CONVERT_DOWN(x, type) CONVERT_RTE(x, type)
37
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +010038#if defined(DATA_TYPE_IN1) && defined(DATA_TYPE_IN2) && defined(ACC_DATA_TYPE) && defined(DATA_TYPE_OUT)
Giorgio Arenaada6cbc2021-04-16 17:03:39 +010039
40#define VEC_ACC_TYPE VEC_DATA_TYPE(ACC_DATA_TYPE, VEC_SIZE_OUT)
41#define VEC_OUT_TYPE VEC_DATA_TYPE(DATA_TYPE_OUT, VEC_SIZE_OUT)
42
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043/** Performs a pixelwise multiplication with integer scale of integer inputs.
44 *
45 * @attention The inputs and output data types need to be passed at compile time using -DDATA_TYPE_IN1, -DDATA_TYPE_IN2 and -DDATA_TYPE_OUT:
46 * e.g. -DDATA_TYPE_IN1=uchar -DDATA_TYPE_IN2=ushort -DDATA_TYPE_OUT=short
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +010047 * @attention The data_type of the intermediate result of the multiplication should passed as well using -DACC_DATA_TYPE.
48 * e.g. If one of inputs is S16 -DACC_DATA_TYPE=int should be passed else -DACC_DATA_TYPE=short.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 *
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010050 * @param[in] in1_ptr Pointer to the source image. Supported data types: U8/S16
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051 * @param[in] in1_stride_x Stride of the source image in X dimension (in bytes)
52 * @param[in] in1_step_x in1_stride_x * number of elements along X processed per workitem(in bytes)
53 * @param[in] in1_stride_y Stride of the source image in Y dimension (in bytes)
54 * @param[in] in1_step_y in1_stride_y * number of elements along Y processed per workitem(in bytes)
Anthony Barbier9a7182e2017-07-11 18:36:40 +010055 * @param[in] in1_stride_z Stride of the source image in Y dimension (in bytes)
56 * @param[in] in1_step_z in1_stride_z * number of elements along Y processed per workitem(in bytes)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057 * @param[in] in1_offset_first_element_in_bytes The offset of the first element in the source image
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +010058 * @param[in] in2_ptr Pointer to the source image. Supported data types: same as @p in1_ptr
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059 * @param[in] in2_stride_x Stride of the source image in X dimension (in bytes)
60 * @param[in] in2_step_x in2_stride_x * number of elements along X processed per workitem(in bytes)
61 * @param[in] in2_stride_y Stride of the source image in Y dimension (in bytes)
62 * @param[in] in2_step_y in2_stride_y * number of elements along Y processed per workitem(in bytes)
Anthony Barbier9a7182e2017-07-11 18:36:40 +010063 * @param[in] in2_stride_z Stride of the source image in Y dimension (in bytes)
64 * @param[in] in2_step_z in2_stride_z * number of elements along Y processed per workitem(in bytes)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065 * @param[in] in2_offset_first_element_in_bytes The offset of the first element in the source image
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +010066 * @param[out] out_ptr Pointer to the destination image. Supported data types: same as @p in1_ptr
Anthony Barbier6ff3b192017-09-04 18:44:23 +010067 * @param[in] out_stride_x Stride of the destination image in X dimension (in bytes)
68 * @param[in] out_step_x out_stride_x * number of elements along X processed per workitem(in bytes)
69 * @param[in] out_stride_y Stride of the destination image in Y dimension (in bytes)
70 * @param[in] out_step_y out_stride_y * number of elements along Y processed per workitem(in bytes)
Anthony Barbier9a7182e2017-07-11 18:36:40 +010071 * @param[in] out_stride_z Stride of the destination image in Y dimension (in bytes)
72 * @param[in] out_step_z out_stride_z * number of elements along Y processed per workitem(in bytes)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010073 * @param[in] out_offset_first_element_in_bytes The offset of the first element in the destination image
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010074 * @param[in] scale Integer scaling factor. Supported data types: S32.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010075 */
76__kernel void pixelwise_mul_int(
Anthony Barbier9a7182e2017-07-11 18:36:40 +010077 TENSOR3D_DECLARATION(in1),
78 TENSOR3D_DECLARATION(in2),
Sheri Zhanga387e272021-06-29 17:34:06 +010079#if !defined(IN_PLACE)
Anthony Barbier9a7182e2017-07-11 18:36:40 +010080 TENSOR3D_DECLARATION(out),
Sheri Zhanga387e272021-06-29 17:34:06 +010081#endif // !defined(IN_PLACE)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082 const uint scale)
83{
Giorgio Arenaada6cbc2021-04-16 17:03:39 +010084 size_t x = max((int)(get_global_id(0) * VEC_SIZE_OUT - (VEC_SIZE_OUT - VEC_SIZE_LEFTOVER) % VEC_SIZE_OUT), 0);
85 size_t y = get_global_id(1);
86 size_t z = get_global_id(2);
87
88 __global uchar *in1_addr = in1_ptr + in1_offset_first_element_in_bytes + x * in1_stride_x + y * in1_stride_y + z * in1_stride_z;
89 __global uchar *in2_addr = in2_ptr + in2_offset_first_element_in_bytes + x * in2_stride_x + y * in2_stride_y + z * in2_stride_z;
Sheri Zhanga387e272021-06-29 17:34:06 +010090 __global uchar *
91#if !defined(IN_PLACE)
92 out_addr = out_ptr + out_offset_first_element_in_bytes + x * out_stride_x + y * out_stride_y + z * out_stride_z;
93#else // !defined(IN_PLACE)
94#if defined(SRC1_IN_PLACE)
95 out_addr = in1_addr;
96#else //defined(SRC1_IN_PLACE)
97 out_addr = in2_addr;
98#endif //defined(SRC1_IN_PLACE)
99#endif // !defined(IN_PLACE)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100
101 // Load data
Giorgio Arenaada6cbc2021-04-16 17:03:39 +0100102 VEC_ACC_TYPE in1_data = CONVERT((VEC_DATA_TYPE(DATA_TYPE_IN1, VEC_SIZE_OUT))VLOAD(VEC_SIZE_IN1)(0, (__global DATA_TYPE_IN1 *)in1_addr), VEC_ACC_TYPE);
103 VEC_ACC_TYPE in2_data = CONVERT((VEC_DATA_TYPE(DATA_TYPE_IN2, VEC_SIZE_OUT))VLOAD(VEC_SIZE_IN2)(0, (__global DATA_TYPE_IN2 *)in2_addr), VEC_ACC_TYPE);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104 // Perform multiplication and store result
Giorgio Arenaada6cbc2021-04-16 17:03:39 +0100105 VEC_OUT_TYPE out_data0 = MUL_OP(in1_data, in2_data, scale, DATA_TYPE_OUT, VEC_SIZE_OUT);
106 STORE_VECTOR_SELECT(out_data, DATA_TYPE_OUT, out_addr, VEC_SIZE_OUT, VEC_SIZE_LEFTOVER, VEC_SIZE_LEFTOVER != 0 && get_global_id(0) == 0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107}
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100108#endif /* defined(DATA_TYPE_IN1) && defined(DATA_TYPE_IN2) && defined(ACC_DATA_TYPE) && defined(DATA_TYPE_OUT) */
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100109
Giorgio Arenaada6cbc2021-04-16 17:03:39 +0100110#if defined(SCALE_IN1) && defined(SCALE_IN2) && defined(SCALE_OUT) && defined(DATA_TYPE_OUT) && defined(VEC_SIZE_OUT)
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100111
Giorgio Arenaada6cbc2021-04-16 17:03:39 +0100112#define VEC_FLOAT VEC_DATA_TYPE(float, VEC_SIZE_OUT)
113#define VEC_INT VEC_DATA_TYPE(int, VEC_SIZE_OUT)
114#define VEC_TYPE VEC_DATA_TYPE(DATA_TYPE_OUT, VEC_SIZE_OUT)
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100115
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100116/** Performs a pixelwise multiplication with float scale of quantized inputs.
117 *
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100118 * @note The quantization offset of the first operand must be passed at compile time only if asymmetric using -DOFFSET_IN1, e.g. -DOFFSET_IN1=10
119 * @note The quantization offset of the second operand must be passed at compile time only if asymmetric using -DOFFSET_IN2, e.g. -DOFFSET_IN2=10
120 * @note The quantization offset of the output must be passed at compile time only if asymmetric using -DOFFSET_OUT, e.g. -DOFFSET_OUT=10
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100121 * @note The quantization scale of the first operand must be passed at compile time using -DSCALE_IN1, e.g. -DSCALE_IN1=10
122 * @note The quantization scale of the second operand must be passed at compile time using -DSCALE_IN2, e.g. -DSCALE_IN2=10
123 * @note The quantization scale of the output must be passed at compile time using -DSCALE_OUT, e.g. -DSCALE_OUT=10
124 * @note To perform saturating operation -DSATURATE has to be passed to the compiler otherwise wrapping policy will be used.
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100125 * @attention The data type must be passed at compile time using -DDATA_TYPE_OUT, i.e. -DDATA_TYPE_OUT=uchar
126 * @attention Vector size should be given as a preprocessor argument using -DVEC_SIZE=size. e.g. -DVEC_SIZE=16
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100127 *
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000128 * @param[in] in1_ptr Pointer to the source image. Supported data types: QASYMM8/QASYMM8_SIGNED/QSYMM16
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100129 * @param[in] in1_stride_x Stride of the source image in X dimension (in bytes)
130 * @param[in] in1_step_x in1_stride_x * number of elements along X processed per workitem(in bytes)
131 * @param[in] in1_stride_y Stride of the source image in Y dimension (in bytes)
132 * @param[in] in1_step_y in1_stride_y * number of elements along Y processed per workitem(in bytes)
133 * @param[in] in1_stride_z Stride of the source image in Y dimension (in bytes)
134 * @param[in] in1_step_z in1_stride_z * number of elements along Y processed per workitem(in bytes)
135 * @param[in] in1_offset_first_element_in_bytes The offset of the first element in the source image
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000136 * @param[in] in2_ptr Pointer to the source image. Supported data types: same as @p in1_ptr
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100137 * @param[in] in2_stride_x Stride of the source image in X dimension (in bytes)
138 * @param[in] in2_step_x in2_stride_x * number of elements along X processed per workitem(in bytes)
139 * @param[in] in2_stride_y Stride of the source image in Y dimension (in bytes)
140 * @param[in] in2_step_y in2_stride_y * number of elements along Y processed per workitem(in bytes)
141 * @param[in] in2_stride_z Stride of the source image in Y dimension (in bytes)
142 * @param[in] in2_step_z in2_stride_z * number of elements along Y processed per workitem(in bytes)
143 * @param[in] in2_offset_first_element_in_bytes The offset of the first element in the source image
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000144 * @param[out] out_ptr Pointer to the destination image. Supported data types: same as @p in1_ptr
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100145 * @param[in] out_stride_x Stride of the destination image in X dimension (in bytes)
146 * @param[in] out_step_x out_stride_x * number of elements along X processed per workitem(in bytes)
147 * @param[in] out_stride_y Stride of the destination image in Y dimension (in bytes)
148 * @param[in] out_step_y out_stride_y * number of elements along Y processed per workitem(in bytes)
149 * @param[in] out_stride_z Stride of the destination image in Y dimension (in bytes)
150 * @param[in] out_step_z out_stride_z * number of elements along Y processed per workitem(in bytes)
151 * @param[in] out_offset_first_element_in_bytes The offset of the first element in the destination image
152 * @param[in] scale Float scaling factor. Supported data types: F32
153 */
154__kernel void pixelwise_mul_quantized(
155 TENSOR3D_DECLARATION(in1),
156 TENSOR3D_DECLARATION(in2),
Sheri Zhanga387e272021-06-29 17:34:06 +0100157#if !defined(IN_PLACE)
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100158 TENSOR3D_DECLARATION(out),
Sheri Zhanga387e272021-06-29 17:34:06 +0100159#endif // !defined(IN_PLACE)
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100160 const float scale)
161{
Giorgio Arenaada6cbc2021-04-16 17:03:39 +0100162 size_t x = max((int)(get_global_id(0) * VEC_SIZE_OUT - (VEC_SIZE_OUT - VEC_SIZE_LEFTOVER) % VEC_SIZE_OUT), 0);
163 size_t y = get_global_id(1);
164 size_t z = get_global_id(2);
165
166 __global uchar *in1_addr = in1_ptr + in1_offset_first_element_in_bytes + x * in1_stride_x + y * in1_stride_y + z * in1_stride_z;
167 __global uchar *in2_addr = in2_ptr + in2_offset_first_element_in_bytes + x * in2_stride_x + y * in2_stride_y + z * in2_stride_z;
Sheri Zhanga387e272021-06-29 17:34:06 +0100168 __global uchar *
169#if !defined(IN_PLACE)
170 out_addr = out_ptr + out_offset_first_element_in_bytes + x * out_stride_x + y * out_stride_y + z * out_stride_z;
171#else // !defined(IN_PLACE)
172#if defined(SRC1_IN_PLACE)
173 out_addr = in1_addr;
174#else //defined(SRC1_IN_PLACE)
175 out_addr = in2_addr;
176#endif //defined(SRC1_IN_PLACE)
177#endif // !defined(IN_PLACE)
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100178
179 // Load data
Giorgio Arenadd2d0132021-04-22 14:34:15 +0100180 VEC_INT in_a = CONVERT((VEC_TYPE)(VLOAD(VEC_SIZE_IN1)(0, (__global DATA_TYPE_OUT *)in1_addr)), VEC_INT);
181 VEC_INT in_b = CONVERT((VEC_TYPE)(VLOAD(VEC_SIZE_IN2)(0, (__global DATA_TYPE_OUT *)in2_addr)), VEC_INT);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100182
183 // Dequantize
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100184#if defined(OFFSET_IN1)
185 in_a -= (VEC_INT)((int)OFFSET_IN1);
186#endif // defined(OFFSET_IN1)
187#if defined(OFFSET_IN2)
188 in_b -= (VEC_INT)((int)OFFSET_IN2);
189#endif // defined(OFFSET_IN2)
190 const VEC_FLOAT in1f32 = CONVERT(in_a, VEC_FLOAT) * (VEC_FLOAT)((float)SCALE_IN1);
191 const VEC_FLOAT in2f32 = CONVERT(in_b, VEC_FLOAT) * (VEC_FLOAT)((float)SCALE_IN2);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100192
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100193#if defined(OFFSET_OUT)
194 const VEC_FLOAT qresf32 = (in1f32 * in2f32 * scale) / ((VEC_FLOAT)(float)SCALE_OUT) + ((VEC_FLOAT)((float)OFFSET_OUT));
195#else // defined(OFFSET_OUT)
196 const VEC_FLOAT qresf32 = (in1f32 * in2f32 * scale) / ((VEC_FLOAT)(float)SCALE_OUT);
197#endif // defined(OFFSET_OUT)
Giorgio Arenaada6cbc2021-04-16 17:03:39 +0100198 const VEC_TYPE res0 = CONVERT_SAT(CONVERT_DOWN(qresf32, VEC_INT), VEC_TYPE);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100199
200 // Store result
Giorgio Arenaada6cbc2021-04-16 17:03:39 +0100201 STORE_VECTOR_SELECT(res, DATA_TYPE_OUT, out_addr, VEC_SIZE_OUT, VEC_SIZE_LEFTOVER, VEC_SIZE_LEFTOVER != 0 && get_global_id(0) == 0);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100202}
Giorgio Arenaada6cbc2021-04-16 17:03:39 +0100203#endif /* defined(SCALE_IN1) && defined(SCALE_IN2) && defined(SCALE_OUT) && defined(DATA_TYPE_OUT) && defined(VEC_SIZE_OUT) */