From: Zhigang Gong Date: Wed, 16 Jan 2013 09:35:05 +0000 (+0800) Subject: utest: Added one test case for the int4 constant vector. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e67bbed43662ee6c749819e830a17053b4d0e365;p=contrib%2Fbeignet.git utest: Added one test case for the int4 constant vector. This test case will initialize a int4 vector according to a constant expression. And will hit a bug as current compiler doesn't handle the ConstantDataSequential type constant correctly. Signed-off-by: Zhigang Gong Reviewed-by: Lu Guanqun --- diff --git a/kernels/test_fill_image0.cl b/kernels/test_fill_image0.cl new file mode 100644 index 0000000..ad1339f --- /dev/null +++ b/kernels/test_fill_image0.cl @@ -0,0 +1,9 @@ +__kernel void +test_fill_image0(__write_only image2d_t dst) +{ + int2 coord; + int4 color4 = {0x12, 0x34, 0x56, 0x78}; + coord.x = (int)get_global_id(0); + coord.y = (int)get_global_id(1); + write_imagei(dst, coord, color4); +} diff --git a/utests/CMakeLists.txt b/utests/CMakeLists.txt index bd2edc3..ee3d7f5 100644 --- a/utests/CMakeLists.txt +++ b/utests/CMakeLists.txt @@ -22,6 +22,7 @@ compiler_shader_toy.cpp compiler_copy_image.cpp compiler_copy_buffer_row.cpp compiler_fill_image.cpp + compiler_fill_image0.cpp compiler_function_argument0.cpp compiler_function_argument1.cpp compiler_function_argument.cpp diff --git a/utests/compiler_fill_image0.cpp b/utests/compiler_fill_image0.cpp new file mode 100644 index 0000000..cfb6b87 --- /dev/null +++ b/utests/compiler_fill_image0.cpp @@ -0,0 +1,34 @@ +#include "utest_helper.hpp" + +static void compiler_fill_image0(void) +{ + const size_t w = 512; + const size_t h = 512; + cl_image_format format; + cl_sampler sampler; + + format.image_channel_order = CL_RGBA; + format.image_channel_data_type = CL_UNSIGNED_INT8; + + // Setup kernel and images + OCL_CREATE_KERNEL("test_fill_image0"); + + OCL_CREATE_IMAGE(buf[0], 0, &format, w, h, w * sizeof(uint32_t), NULL); + + // Run the kernel + OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]); + globals[0] = w; + globals[1] = h; + locals[0] = 16; + locals[1] = 16; + OCL_NDRANGE(2); + + // Check result + OCL_MAP_BUFFER(0); + for (uint32_t j = 0; j < h; ++j) + for (uint32_t i = 0; i < w; i++) + OCL_ASSERT(((uint32_t*)buf_data[0])[j * w + i] == 0x78563412); + OCL_UNMAP_BUFFER(0); +} + +MAKE_UTEST_FROM_FUNCTION(compiler_fill_image0);