summaryrefslogtreecommitdiff
path: root/utests/compiler_copy_image_3d.cpp
diff options
context:
space:
mode:
authorHomer Hsing <homer.xing@intel.com>2013-05-06 08:45:52 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-05-08 17:55:52 +0800
commit19e9c58f29362151d0f3900ca5a7b12bbce3e2c2 (patch)
tree5a9095839f9029a0dcf479e3a99d80467a882612 /utests/compiler_copy_image_3d.cpp
parent6c4a58ad3c94e8aed1cc629a771afde341d62a34 (diff)
downloadbeignet-19e9c58f29362151d0f3900ca5a7b12bbce3e2c2.tar.gz
test cases for image3d_t
test cases for image3d_t Signed-off-by: Homer Hsing <homer.xing@intel.com> Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Diffstat (limited to 'utests/compiler_copy_image_3d.cpp')
-rw-r--r--utests/compiler_copy_image_3d.cpp55
1 files changed, 55 insertions, 0 deletions
diff --git a/utests/compiler_copy_image_3d.cpp b/utests/compiler_copy_image_3d.cpp
new file mode 100644
index 00000000..9816fe4a
--- /dev/null
+++ b/utests/compiler_copy_image_3d.cpp
@@ -0,0 +1,55 @@
+#include "utest_helper.hpp"
+
+static void compiler_copy_image_3d(void)
+{
+ const size_t w = 512;
+ const size_t h = 512;
+ const size_t depth = 1;
+ cl_image_format format;
+ cl_image_desc desc;
+ cl_sampler sampler;
+
+ // Setup kernel and images
+ OCL_CREATE_KERNEL("test_copy_image_3d");
+ buf_data[0] = (uint32_t*) malloc(sizeof(uint32_t) * w * h * depth);
+ for (uint32_t k = 0; k < depth; k++)
+ for (uint32_t j = 0; j < h; j++)
+ for (uint32_t i = 0; i < w; i++)
+ ((uint32_t*)buf_data[0])[k*w*h + j*w + i] = k*w*h + j*w + i;
+
+ format.image_channel_order = CL_RGBA;
+ format.image_channel_data_type = CL_UNSIGNED_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;
+ desc.image_slice_pitch = 0;
+ OCL_CREATE_IMAGE(buf[0], CL_MEM_COPY_HOST_PTR, &format, &desc, buf_data[0]);
+ OCL_CREATE_IMAGE(buf[1], 0, &format, &desc, NULL);
+ OCL_CREATE_SAMPLER(sampler, CL_ADDRESS_REPEAT, CL_FILTER_NEAREST);
+ free(buf_data[0]);
+ buf_data[0] = NULL;
+
+ // Run the kernel
+ OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
+ OCL_SET_ARG(1, sizeof(cl_mem), &buf[1]);
+ OCL_SET_ARG(2, sizeof(sampler), &sampler);
+ globals[0] = w;
+ globals[1] = h;
+ locals[0] = 16;
+ locals[1] = 16;
+ OCL_NDRANGE(2);
+
+ // Check result
+ OCL_MAP_BUFFER(0);
+ OCL_MAP_BUFFER(1);
+ for (uint32_t k = 0; k < depth; k++)
+ for (uint32_t j = 0; j < h; ++j)
+ for (uint32_t i = 0; i < w; i++)
+ OCL_ASSERT(((uint32_t*)buf_data[0])[k*w*h + j*w + i] == ((uint32_t*)buf_data[1])[k*w*h + j*w + i]);
+ OCL_UNMAP_BUFFER(0);
+ OCL_UNMAP_BUFFER(1);
+}
+
+MAKE_UTEST_FROM_FUNCTION(compiler_copy_image_3d);