diff options
author | Yan Wang <yan.wang@linux.intel.com> | 2017-06-13 16:31:34 +0800 |
---|---|---|
committer | Yang Rong <rong.r.yang@intel.com> | 2017-06-14 17:25:37 +0800 |
commit | 38ca78d9397cbe1a2da81a3f80b76ab4c1b4c689 (patch) | |
tree | 65209c74000aaa2aff17ab71f4c503315b786570 | |
parent | 2abf89a2a356d94116c0b00aa999b6d91b5fc25a (diff) |
Add test case for large 3D image with TILE_Y.
It will test aligned4 and aligned16 kernel for 3D image.
Signed-off-by: Yan Wang <yan.wang@linux.intel.com>
Reviewed-by: Yang Rong <rong.r.yang@intel.com>
-rw-r--r-- | utests/compiler_fill_large_image.cpp | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/utests/compiler_fill_large_image.cpp b/utests/compiler_fill_large_image.cpp index 3894d6f3..cdc91fa5 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); |