summaryrefslogtreecommitdiff
path: root/utests/compiler_function_constant.cpp
diff options
context:
space:
mode:
authorYang Rong <rong.r.yang@intel.com>2013-04-22 13:11:52 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-04-22 17:47:52 +0800
commit68a5b7477a11630041451636f68ee9a6bb44fd31 (patch)
tree62735e2351ce1517c236790b6f33d987fbbf0ede /utests/compiler_function_constant.cpp
parentc6d7b5f92c824b892f509993cddf629572e9c299 (diff)
downloadbeignet-68a5b7477a11630041451636f68ee9a6bb44fd31.tar.gz
Add constant ptr argument test case.
Signed-off-by: Yang Rong <rong.r.yang@intel.com> Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Diffstat (limited to 'utests/compiler_function_constant.cpp')
-rw-r--r--utests/compiler_function_constant.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/utests/compiler_function_constant.cpp b/utests/compiler_function_constant.cpp
new file mode 100644
index 00000000..20f0ece6
--- /dev/null
+++ b/utests/compiler_function_constant.cpp
@@ -0,0 +1,34 @@
+#include "utest_helper.hpp"
+
+void compiler_function_constant(void)
+{
+ const size_t n = 2048;
+ const uint32_t value = 34;
+
+ // Setup kernel and buffers
+ OCL_CREATE_KERNEL("compiler_function_constant");
+ OCL_CREATE_BUFFER(buf[0], 0, 75 * sizeof(short), NULL);
+ OCL_CREATE_BUFFER(buf[1], 0, n * sizeof(uint32_t), NULL);
+ OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
+ OCL_SET_ARG(1, sizeof(cl_mem), &buf[1]);
+ OCL_SET_ARG(2, sizeof(uint32_t), &value);
+
+ OCL_MAP_BUFFER(0);
+ for(uint32_t i = 0; i < 69; ++i)
+ ((short *)buf_data[0])[i] = i;
+ OCL_UNMAP_BUFFER(0);
+
+ // Run the kernel
+ globals[0] = n;
+ locals[0] = 16;
+ OCL_NDRANGE(1);
+ OCL_MAP_BUFFER(1);
+
+ // Check results
+ for (uint32_t i = 0; i < n; ++i)
+ OCL_ASSERT(((uint32_t *)buf_data[1])[i] == (value + i%69));
+
+ OCL_UNMAP_BUFFER(1);
+}
+
+MAKE_UTEST_FROM_FUNCTION(compiler_function_constant);