summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kernels/test_fill_image0.cl9
-rw-r--r--utests/CMakeLists.txt1
-rw-r--r--utests/compiler_fill_image0.cpp34
3 files changed, 44 insertions, 0 deletions
diff --git a/kernels/test_fill_image0.cl b/kernels/test_fill_image0.cl
new file mode 100644
index 00000000..ad1339fa
--- /dev/null
+++ b/kernels/test_fill_image0.cl
@@ -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);
+}
diff --git a/utests/CMakeLists.txt b/utests/CMakeLists.txt
index bd2edc34..ee3d7f5b 100644
--- a/utests/CMakeLists.txt
+++ b/utests/CMakeLists.txt
@@ -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
index 00000000..cfb6b874
--- /dev/null
+++ b/utests/compiler_fill_image0.cpp
@@ -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);