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
|
constant sampler_t immediate_sampler
= CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_NONE | CLK_FILTER_NEAREST;
kernel void
test_image_query_funcs (__read_only image2d_t image2,
__read_only image3d_t image3,
sampler_t external_sampler)
{
int h = get_image_height (image3);
int w = get_image_width (image3);
int d = get_image_depth (image3);
int4 dim4 = get_image_dim (image3);
if (h != 4)
printf("get_image_height failed expected 4, got %d\n", h);
if (w != 2)
printf("get_image_width failed expected 2, got %d\n", w);
if (d != 8)
printf("get_image_width failed expected 8, got %d\n", d);
if (dim4.x != w || dim4.y != h || dim4.z != d || dim4.w != 0)
printf("get_image_dim failed expected (%d,%d,%d,0), got %v4d\n",
w, h, d, dim4);
h = get_image_height (image2);
w = get_image_width (image2);
int2 dim2 = get_image_dim (image2);
if (h != 4)
printf("get_image_height failed expected 4, got %d\n", h);
if (w != 2)
printf("get_image_width failed expected 2, got %d\n", w);
if (dim2.x != w || dim2.y != h)
printf("get_image_dim failed expected (%d,%d), got %v2d\n",
w, h, dim2);
uint4 j = read_imageui (image2, immediate_sampler, (int2) (0, 0));
printf ("read imag1: %v4hlu\n", j);
uint4 i = read_imageui (image2, external_sampler, (int2) (1, 1));
printf ("read imag2: %v4hlu\n", i);
}
|