summaryrefslogtreecommitdiff
path: root/utests/compiler_device_enqueue.cpp
diff options
context:
space:
mode:
authorYang, Rong R <rong.r.yang@intel.com>2016-11-28 19:32:44 +0800
committerYang Rong <rong.r.yang@intel.com>2016-12-30 16:22:03 +0800
commitde4e8bcc17fded6019baf5c9186780cb27695567 (patch)
tree27f64be59b848f27c9bb443f59ce46f47b7b9b92 /utests/compiler_device_enqueue.cpp
parentf8aa5ad2454967d638d214390823cbb93af3e76a (diff)
downloadbeignet-de4e8bcc17fded6019baf5c9186780cb27695567.tar.gz
OCL20: add device enqueue test case.
Signed-off-by: Yang Rong <rong.r.yang@intel.com> Reviewed-by: Pan Xiuli <xiuli.pan@intel.com>
Diffstat (limited to 'utests/compiler_device_enqueue.cpp')
-rw-r--r--utests/compiler_device_enqueue.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/utests/compiler_device_enqueue.cpp b/utests/compiler_device_enqueue.cpp
new file mode 100644
index 00000000..a9e3e2df
--- /dev/null
+++ b/utests/compiler_device_enqueue.cpp
@@ -0,0 +1,36 @@
+#include "utest_helper.hpp"
+
+void compiler_device_enqueue(void)
+{
+ const size_t n = 32;
+ const uint32_t global_sz = 3;
+ uint32_t result = 0;
+
+ // Setup kernel and buffers
+ OCL_CREATE_KERNEL("compiler_device_enqueue");
+ OCL_CREATE_BUFFER(buf[0], 0, n * sizeof(uint32_t), NULL);
+ OCL_SET_ARG(0, sizeof(uint32_t), &global_sz);
+ OCL_SET_ARG(1, sizeof(cl_mem), &buf[0]);
+
+ OCL_MAP_BUFFER(0);
+ for(uint32_t i = 0; i < 69; ++i)
+ ((short *)buf_data[0])[i] = 0;
+ OCL_UNMAP_BUFFER(0);
+
+ // Run the kernel
+ globals[0] = n;
+ locals[0] = 16;
+ OCL_NDRANGE(1);
+
+ for(uint32_t i = 0; i < global_sz; ++i) {
+ result += i;
+ }
+ result *= global_sz;
+
+ OCL_MAP_BUFFER(0);
+ for (uint32_t i = 0; i < n; ++i)
+ OCL_ASSERT(((uint32_t *)buf_data[0])[i] == result);
+ OCL_UNMAP_BUFFER(0);
+}
+
+MAKE_UTEST_FROM_FUNCTION(compiler_device_enqueue);