[Beignet] [PATCH 2/3 V2] Add the test case for image 1d array fill

junyan.he at inbox.com junyan.he at inbox.com
Wed Oct 22 00:50:59 PDT 2014


From: Junyan He <junyan.he at linux.intel.com>

Signed-off-by: Junyan He <junyan.he at linux.intel.com>
---
 kernels/test_fill_image_1d_array.cl     | 11 +++++
 utests/CMakeLists.txt                   |  1 +
 utests/compiler_fill_image_1d_array.cpp | 73 +++++++++++++++++++++++++++++++++
 3 files changed, 85 insertions(+)
 create mode 100644 kernels/test_fill_image_1d_array.cl
 create mode 100644 utests/compiler_fill_image_1d_array.cpp

diff --git a/kernels/test_fill_image_1d_array.cl b/kernels/test_fill_image_1d_array.cl
new file mode 100644
index 0000000..ee742f4
--- /dev/null
+++ b/kernels/test_fill_image_1d_array.cl
@@ -0,0 +1,11 @@
+__kernel void
+test_fill_image_1d_array(__write_only image1d_array_t dst)
+{
+  int coordx;
+  int coordy;
+  coordx = (int)get_global_id(0);
+  coordy = (int)get_global_id(1);
+  uint4 color4 = {0, 1, 2 ,3};
+  if (coordy < 7)
+    write_imageui(dst, (int2)(coordx, coordy), color4);
+}
diff --git a/utests/CMakeLists.txt b/utests/CMakeLists.txt
index 1b8caca..57d5909 100644
--- a/utests/CMakeLists.txt
+++ b/utests/CMakeLists.txt
@@ -187,6 +187,7 @@ set (utests_sources
   builtin_kernel_max_global_size.cpp
   image_1D_buffer.cpp
   compare_image_2d_and_1d_array.cpp
+  compiler_fill_image_1d_array.cpp
   compiler_constant_expr.cpp
   vload_bench.cpp
   utest_assert.cpp
diff --git a/utests/compiler_fill_image_1d_array.cpp b/utests/compiler_fill_image_1d_array.cpp
new file mode 100644
index 0000000..cc7cf0a
--- /dev/null
+++ b/utests/compiler_fill_image_1d_array.cpp
@@ -0,0 +1,73 @@
+#include <string.h>
+#include "utest_helper.hpp"
+
+static void compiler_fill_image_1d_array(void)
+{
+  const size_t w = 64;
+  const size_t array = 8;
+  cl_image_format format;
+  cl_image_desc desc;
+  size_t origin[3] = { };
+  size_t region[3];
+  uint32_t* dst;
+
+  memset(&desc, 0x0, sizeof(cl_image_desc));
+  memset(&format, 0x0, sizeof(cl_image_format));
+
+  format.image_channel_order = CL_RGBA;
+  format.image_channel_data_type = CL_UNSIGNED_INT8;
+  desc.image_type = CL_MEM_OBJECT_IMAGE1D_ARRAY;
+  desc.image_width = w;
+  desc.image_row_pitch = 0;//w * sizeof(uint32_t);
+  desc.image_array_size = array;
+
+  // Setup kernel and images
+  OCL_CREATE_KERNEL("test_fill_image_1d_array");
+
+  OCL_CREATE_IMAGE(buf[0], 0, &format, &desc, NULL);
+
+  OCL_MAP_BUFFER_GTT(0);
+  memset(buf_data[0], 0, sizeof(uint32_t) * w * array);
+  OCL_UNMAP_BUFFER_GTT(0);
+
+  // Run the kernel
+  OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
+  globals[0] = w/2;
+  locals[0] = 16;
+  globals[1] = 8;
+  locals[1] = 8;
+  OCL_NDRANGE(2);
+
+  // Check result
+  region[0] = w;
+  region[1] = array;
+  region[2] = 1;
+  dst = (uint32_t*)malloc(w*array*sizeof(uint32_t));
+  OCL_READ_IMAGE(buf[0], origin, region, dst);
+
+#if 0
+  printf("------ The image result is: -------\n");
+  for (uint32_t j = 0; j < array; j++) {
+    for (uint32_t i = 0; i < w; i++) {
+      printf(" %2x", dst[j*w + i]);
+    }
+    printf("\n");
+  }
+#endif
+
+  for (uint32_t j = 0; j < array - 1; j++) {
+    for (uint32_t i = 0; i < w/2; i++) {
+      OCL_ASSERT(dst[j*w + i] == 0x03020100);
+    }
+    for (uint32_t i = w/2; i < w; i++) {
+      OCL_ASSERT(dst[j*w + i] == 0);
+    }
+  }
+
+  for (uint32_t i = 0; i < w; i++) {
+    OCL_ASSERT(dst[(array - 1)*w + i] == 0x0);
+  }
+  free(dst);
+}
+
+MAKE_UTEST_FROM_FUNCTION(compiler_fill_image_1d_array);
-- 
1.9.1



More information about the Beignet mailing list