From: Yan Wang <yan.w...@linux.intel.com>

It will test aligned4 and aligned16 kernel for 3D image.

Signed-off-by: Yan Wang <yan.w...@linux.intel.com>
---
 utests/compiler_fill_large_image.cpp | 98 ++++++++++++++++++++++++++++++++++++
 1 file changed, 98 insertions(+)

diff --git a/utests/compiler_fill_large_image.cpp 
b/utests/compiler_fill_large_image.cpp
index 3894d6f..61f3c3e 100644
--- a/utests/compiler_fill_large_image.cpp
+++ b/utests/compiler_fill_large_image.cpp
@@ -214,3 +214,101 @@ static void compiler_fill_large_image_3(void)
 }
 
 MAKE_UTEST_FROM_FUNCTION(compiler_fill_large_image_3);
+
+static void compiler_fill_large_image_4(void)
+{
+  const size_t w = 8191;
+  const size_t h = 8192;
+  const size_t depth = 2;
+  const size_t origin[3] = {0, 0, 0};
+  const size_t region[3] = {w, h, depth};
+  cl_image_format format;
+  cl_image_desc desc;
+
+  memset(&desc, 0x0, sizeof(cl_image_desc));
+  memset(&format, 0x0, sizeof(cl_image_format));
+
+  // Setup kernel and images
+  buf_data[0] = (unsigned char*) malloc(sizeof(unsigned char) * 8192 * 8192 * 
2 * 4);
+  buf_data[1] = (unsigned char*) malloc(sizeof(unsigned char) * 8192 * 8192 * 
2 * 4);
+  for (uint32_t m = 0; m < depth; ++m)
+    for (uint32_t j = 0; j < h; ++j)
+      for (uint32_t i = 0; i < w; i++)
+        for (uint32_t k = 0; k < 4; k++)
+          ((unsigned char*)buf_data[0])[(m * w * h + j * w + i) * 4 + k] = 
(unsigned char)rand();
+
+  format.image_channel_order = CL_RGBA;
+  format.image_channel_data_type = CL_UNORM_INT8;
+  desc.image_type = CL_MEM_OBJECT_IMAGE3D;
+  desc.image_width = w;
+  desc.image_height = h;
+  desc.image_depth = depth;
+  desc.image_row_pitch = 0;
+  OCL_CREATE_IMAGE(buf[0], 0, &format, &desc, NULL);
+  OCL_WRITE_IMAGE(buf[0], origin, region, buf_data[0]);
+  OCL_READ_IMAGE(buf[0], origin, region, buf_data[1]);
+
+  // Check result
+  for (uint32_t m = 0; m < depth; ++m)
+    for (uint32_t j = 0; j < h; ++j)
+      for (uint32_t i = 0; i < w; i++)
+        for (uint32_t k = 0; k < 4; k++)
+          OCL_ASSERT(((uint8_t*)buf_data[0])[(m * w * h + j * w + i) * 4 + k] 
==
+              ((uint8_t*)buf_data[1])[(m * w * h + j * w + i) * 4 + k]);
+
+  free(buf_data[0]);
+  free(buf_data[1]);
+  buf_data[0] = NULL;
+  buf_data[1] = NULL;
+}
+
+MAKE_UTEST_FROM_FUNCTION(compiler_fill_large_image_4);
+
+static void compiler_fill_large_image_5(void)
+{
+  const size_t w = 8192;
+  const size_t h = 8192;
+  const size_t depth = 2;
+  const size_t origin[3] = {0, 0, 0};
+  const size_t region[3] = {w, h, depth};
+  cl_image_format format;
+  cl_image_desc desc;
+
+  memset(&desc, 0x0, sizeof(cl_image_desc));
+  memset(&format, 0x0, sizeof(cl_image_format));
+
+  // Setup kernel and images
+  buf_data[0] = (unsigned char*) malloc(sizeof(unsigned char) * 8192 * 8192 * 
2 * 4);
+  buf_data[1] = (unsigned char*) malloc(sizeof(unsigned char) * 8192 * 8192 * 
2 * 4);
+  for (uint32_t m = 0; m < depth; ++m)
+    for (uint32_t j = 0; j < h; ++j)
+      for (uint32_t i = 0; i < w; i++)
+        for (uint32_t k = 0; k < 4; k++)
+          ((unsigned char*)buf_data[0])[(m * w * h + j * w + i) * 4 + k] = 
(unsigned char)rand();
+
+  format.image_channel_order = CL_RGBA;
+  format.image_channel_data_type = CL_UNORM_INT8;
+  desc.image_type = CL_MEM_OBJECT_IMAGE3D;
+  desc.image_width = w;
+  desc.image_height = h;
+  desc.image_depth = depth;
+  desc.image_row_pitch = 0;
+  OCL_CREATE_IMAGE(buf[0], 0, &format, &desc, NULL);
+  OCL_WRITE_IMAGE(buf[0], origin, region, buf_data[0]);
+  OCL_READ_IMAGE(buf[0], origin, region, buf_data[1]);
+
+  // Check result
+  for (uint32_t m = 0; m < depth; ++m)
+    for (uint32_t j = 0; j < h; ++j)
+      for (uint32_t i = 0; i < w; i++)
+        for (uint32_t k = 0; k < 4; k++)
+          OCL_ASSERT(((uint8_t*)buf_data[0])[(m * w * h + j * w + i) * 4 + k] 
==
+              ((uint8_t*)buf_data[1])[(m * w * h + j * w + i) * 4 + k]);
+
+  free(buf_data[0]);
+  free(buf_data[1]);
+  buf_data[0] = NULL;
+  buf_data[1] = NULL;
+}
+
+MAKE_UTEST_FROM_FUNCTION(compiler_fill_large_image_5);
-- 
2.7.4

_______________________________________________
Beignet mailing list
Beignet@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/beignet

Reply via email to