utest: Added one test case for the int4 constant vector.
authorZhigang Gong <zhigang.gong@linux.intel.com>
Wed, 16 Jan 2013 09:35:05 +0000 (17:35 +0800)
committerZhigang Gong <zhigang.gong@linux.intel.com>
Wed, 10 Apr 2013 06:51:32 +0000 (14:51 +0800)
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 <zhigang.gong@linux.intel.com>
Reviewed-by: Lu Guanqun <guanqun.lu@intel.com>
kernels/test_fill_image0.cl [new file with mode: 0644]
utests/CMakeLists.txt
utests/compiler_fill_image0.cpp [new file with mode: 0644]

diff --git a/kernels/test_fill_image0.cl b/kernels/test_fill_image0.cl
new file mode 100644 (file)
index 0000000..ad1339f
--- /dev/null
@@ -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);
+}
index bd2edc3..ee3d7f5 100644 (file)
@@ -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 (file)
index 0000000..cfb6b87
--- /dev/null
@@ -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);