1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
/* OpenCL built-in library: write_image()
Copyright (c) 2013 Ville Korhonen
Copyright (c) 2017 Michal Babej / Tampere University of Technology
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
/* NOTE: this file is NOT a generic implementation; it works with vectors
in a lot of places and requires that either device supports unaligned
vector operations, or that memory backing the images is properly aligned.
The maximum required alignment is 16bytes (4channels * 32bit color)
Not all CPUs support unaligned vector operations, but the pthread / basic
drivers allocate properly aligned memory for backing buffers; therefore
this should work for everything supported by pthread / basic.
*/
#include "templates.h"
#include "pocl_image_rw_utils.h"
static uint4
map_channels (uint4 color, int order)
{
switch (order)
{
case CLK_ARGB:
return color.wxyz;
case CLK_BGRA:
return color.zyxw;
case CLK_RGBA:
default:
return color;
}
}
/* only for CLK_FLOAT, CLK_SNORM_INT8, CLK_UNORM_INT8,
* CLK_SNORM_INT16, CLK_UNORM_INT16 channel types */
static void
write_float4_pixel (float4 color, void *data, size_t base_index, int type)
{
if (type == CLK_FLOAT)
{
((float4 *)data)[base_index] = color;
return;
}
if (type == CLK_HALF_FLOAT)
{
vstorea_half4(color, base_index, data);
}
const float4 f127 = ((float4) (SCHAR_MAX));
const float4 f32767 = ((float4) (SHRT_MAX));
const float4 f255 = ((float4) (UCHAR_MAX));
const float4 f65535 = ((float4) (USHRT_MAX));
if (type == CLK_SNORM_INT8)
{
/* <-1.0, 1.0> to <I*_MIN, I*_MAX> */
float4 colorf = color * f127;
char4 final_color = convert_char4_sat_rte (colorf);
((char4 *)data)[base_index] = final_color;
return;
}
if (type == CLK_SNORM_INT16)
{
float4 colorf = color * f32767;
short4 final_color = convert_short4_sat_rte (colorf);
((short4 *)data)[base_index] = final_color;
return;
}
if (type == CLK_UNORM_INT8)
{
/* <0, I*_MAX> to <0.0, 1.0> */
/* <-1.0, 1.0> to <I*_MIN, I*_MAX> */
float4 colorf = color * f255;
uchar4 final_color = convert_uchar4_sat_rte (colorf);
((uchar4 *)data)[base_index] = final_color;
return;
}
if (type == CLK_UNORM_INT16)
{
float4 colorf = color * f65535;
ushort4 final_color = convert_ushort4_sat_rte (colorf);
((ushort4 *)data)[base_index] = final_color;
return;
}
return;
}
/* only for CLK_FLOAT, CLK_SNORM_INT8, CLK_UNORM_INT8,
* CLK_SNORM_INT16, CLK_UNORM_INT16 channel types */
static void
write_float_pixel (float color, void *data, size_t base_index, int type)
{
if (type == CLK_FLOAT)
{
((float *)data)[base_index] = color;
return;
}
const float f127 = ((float)SCHAR_MAX);
const float f32767 = ((float)SHRT_MAX);
const float f255 = ((float)UCHAR_MAX);
const float f65535 = ((float)USHRT_MAX);
if (type == CLK_SNORM_INT8)
{
/* <-1.0, 1.0> to <I*_MIN, I*_MAX> */
float colorf = color * f127;
char final_color = convert_char_sat_rte (colorf);
((char *)data)[base_index] = final_color;
return;
}
if (type == CLK_SNORM_INT16)
{
float colorf = color * f32767;
short final_color = convert_short_sat_rte (colorf);
((short *)data)[base_index] = final_color;
return;
}
if (type == CLK_UNORM_INT8)
{
/* <0, I*_MAX> to <0.0, 1.0> */
/* <-1.0, 1.0> to <I*_MIN, I*_MAX> */
float colorf = color * f255;
uchar final_color = convert_uchar_sat_rte (colorf);
((uchar *)data)[base_index] = final_color;
return;
}
if (type == CLK_UNORM_INT16)
{
float colorf = color * f65535;
ushort final_color = convert_ushort_sat_rte (colorf);
((ushort *)data)[base_index] = final_color;
return;
}
return;
}
/* for use inside filter functions
* no channel mapping
* no pointers to img metadata */
static void
pocl_write_pixel_fast_ui (uint4 color, size_t base_index, int order,
int elem_size, void *data)
{
if (order == CLK_A)
{
if (elem_size == 1)
((uchar *)data)[base_index] = convert_uchar_sat (color.w);
else if (elem_size == 2)
((ushort *)data)[base_index] = convert_ushort_sat (color.w);
else if (elem_size == 4)
((uint *)data)[base_index] = color.w;
return;
}
if (elem_size == 1)
{
((uchar4 *)data)[base_index] = convert_uchar4_sat (color);
}
else if (elem_size == 2)
{
((ushort4 *)data)[base_index] = convert_ushort4_sat (color);
}
else if (elem_size == 4)
{
((uint4 *)data)[base_index] = color;
}
return;
}
/* for use inside filter functions
* no channel mapping
* no pointers to img metadata */
static void
pocl_write_pixel_fast_f (float4 color, size_t base_index, int channel_type,
int order, void *data)
{
if (order == CLK_A)
{
write_float_pixel (color.w, data, base_index, channel_type);
}
else
{
write_float4_pixel (color, data, base_index, channel_type);
}
return;
}
/* for use inside filter functions
* no channel mapping
* no pointers to img metadata */
static void
pocl_write_pixel_fast_i (int4 color, size_t base_index, int order,
int elem_size, void *data)
{
if (order == CLK_A)
{
if (elem_size == 1)
((char *)data)[base_index] = convert_char_sat (color.w);
else if (elem_size == 2)
((short *)data)[base_index] = convert_short_sat (color.w);
else if (elem_size == 4)
((int *)data)[base_index] = color.w;
return;
}
if (elem_size == 1)
{
((char4 *)data)[base_index] = convert_char4_sat (color);
}
else if (elem_size == 2)
{
((short4 *)data)[base_index] = convert_short4_sat (color);
}
else if (elem_size == 4)
{
((int4 *)data)[base_index] = color;
}
return;
}
/* full write with channel map conversion etc
* Writes a four element pixel to an image pixel pointed by integer coords.
*/
static void
pocl_write_pixel (uint4 color, global dev_image_t *img, int4 coord,
size_t array_offset_pixels, size_t row_pitch,
size_t slice_pitch)
{
int width = img->_width;
int height = img->_height;
int depth = img->_depth;
int order = img->_order;
int elem_size = img->_elem_size;
int channel_type = img->_data_type;
void *data = img->_data;
if ((coord.x >= width || coord.x < 0)
|| ((height != 0) && (coord.y >= height || coord.y < 0))
|| ((depth != 0) && (coord.z >= depth || coord.z < 0)))
{
return;
}
size_t base_index = array_offset_pixels + coord.x + (coord.y * row_pitch)
+ (coord.z * slice_pitch);
color = map_channels (color, order);
if ((channel_type == CLK_SIGNED_INT8) || (channel_type == CLK_SIGNED_INT16)
|| (channel_type == CLK_SIGNED_INT32))
pocl_write_pixel_fast_i (as_int4 (color), base_index, order, elem_size,
data);
else if ((channel_type == CLK_UNSIGNED_INT8)
|| (channel_type == CLK_UNSIGNED_INT16)
|| (channel_type == CLK_UNSIGNED_INT32))
pocl_write_pixel_fast_ui (as_uint4 (color), base_index, order, elem_size,
data);
else // TODO unsupported channel types
pocl_write_pixel_fast_f (as_float4 (color), base_index, channel_type,
order, data);
}
/*
write_imagei can only be used with image objects created with
image_channel_data_type set to one of the following values:
CLK_SIGNED_INT8, CLK_SIGNED_INT16, and CLK_SIGNED_INT32.
write_imageui functions can only be used with image objects created with
image_channel_data_type set to one of the following values:
CLK_UNSIGNED_INT8, CLK_UNSIGNED_INT16, or CLK_UNSIGNED_INT32.
*/
/*
* write_imagef can only be used with image objects created with
* image_channel_data_type set to one of the pre-defined packed formats,
* or set to CLK_SNORM_INT8, CLK_UNORM_INT8, CLK_SNORM_INT16,
* CLK_UNORM_INT16, CLK_HALF_FLOAT or CLK_FLOAT.
*/
#define IMPLEMENT_WRITE_IMAGE_INT_COORD(__IMGTYPE__, __POSTFIX__, __COORD__, \
__DTYPE__) \
void _CL_OVERLOADABLE write_image##__POSTFIX__ ( \
__IMGTYPE__ image, __COORD__ coord, __DTYPE__ color) \
{ \
int4 coord4; \
INITCOORD##__COORD__ (coord4, coord); \
global dev_image_t *i_ptr \
= __builtin_astype (image, global dev_image_t *); \
int elem_size = i_ptr->_elem_size; \
int num_channels = i_ptr->_num_channels; \
size_t elem_bytes = num_channels * elem_size; \
size_t row_pitch = i_ptr->_row_pitch / elem_bytes; \
size_t slice_pitch = i_ptr->_slice_pitch / elem_bytes; \
pocl_write_pixel (as_uint4 (color), i_ptr, coord4, 0, row_pitch, \
slice_pitch); \
}
#define IMPLEMENT_WRITE_ARRAY_INT_COORD(__IMGTYPE__, __POSTFIX__, __COORD__, \
__DTYPE__) \
void _CL_OVERLOADABLE write_image##__POSTFIX__ ( \
__IMGTYPE__ image, __COORD__ coord, __DTYPE__ color) \
{ \
int4 coord4; \
INITCOORD##__COORD__ (coord4, coord); \
global dev_image_t *i_ptr \
= __builtin_astype (image, global dev_image_t *); \
int asize = i_ptr->_image_array_size - 1; \
int elem_size = i_ptr->_elem_size; \
int num_channels = i_ptr->_num_channels; \
size_t elem_bytes = num_channels * elem_size; \
size_t row_pitch = i_ptr->_row_pitch / elem_bytes; \
size_t slice_pitch = i_ptr->_slice_pitch / elem_bytes; \
size_t array_offset_pixels = 0; \
if (i_ptr->_height > 0) \
{ \
array_offset_pixels = clamp (coord4.z, 0, asize); \
coord4.z = 0; \
} \
else \
{ \
array_offset_pixels = clamp (coord4.y, 0, asize); \
coord4.y = 0; \
} \
array_offset_pixels *= slice_pitch; \
pocl_write_pixel (as_uint4 (color), i_ptr, coord4, array_offset_pixels, \
row_pitch, slice_pitch); \
}
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image1d_t, ui, int, uint4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image1d_t, i, int, int4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image1d_t, f, int, float4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image1d_buffer_t, ui, int, uint4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image1d_buffer_t, i, int, int4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image1d_buffer_t, f, int, float4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_WO_AQ image1d_array_t, ui, int2, uint4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_WO_AQ image1d_array_t, i, int2, int4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_WO_AQ image1d_array_t, f, int2, float4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image2d_t, ui, int2, uint4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image2d_t, i, int2, int4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image2d_t, f, int2, float4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_WO_AQ image2d_array_t, ui, int4, uint4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_WO_AQ image2d_array_t, i, int4, int4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_WO_AQ image2d_array_t, f, int4, float4)
#ifdef cl_khr_3d_image_writes
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image3d_t, ui, int4, uint4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image3d_t, i, int4, int4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_WO_AQ image3d_t, f, int4, float4)
#endif
#ifdef CLANG_HAS_RW_IMAGES
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image1d_t, ui, int, uint4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image1d_t, i, int, int4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image1d_t, f, int, float4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image1d_buffer_t, ui, int, uint4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image1d_buffer_t, i, int, int4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image1d_buffer_t, f, int, float4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_RW_AQ image1d_array_t, ui, int2, uint4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_RW_AQ image1d_array_t, i, int2, int4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_RW_AQ image1d_array_t, f, int2, float4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image2d_t, ui, int2, uint4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image2d_t, i, int2, int4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image2d_t, f, int2, float4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_RW_AQ image2d_array_t, ui, int4, uint4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_RW_AQ image2d_array_t, i, int4, int4)
IMPLEMENT_WRITE_ARRAY_INT_COORD (IMG_RW_AQ image2d_array_t, f, int4, float4)
#ifdef cl_khr_3d_image_writes
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image3d_t, ui, int4, uint4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image3d_t, i, int4, int4)
IMPLEMENT_WRITE_IMAGE_INT_COORD (IMG_RW_AQ image3d_t, f, int4, float4)
#endif
#endif
|