summaryrefslogtreecommitdiff
path: root/utests/compiler_hadd.cpp
diff options
context:
space:
mode:
authorHomer Hsing <homer.xing@intel.com>2013-07-02 14:44:36 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-07-02 16:12:17 +0800
commit61e8482c3f19d46d0fc247c88f3cba6dddbe749d (patch)
treea342de373f2ab50b79283aae2874c0befe67abda /utests/compiler_hadd.cpp
parent2a4622e4e878f0014b1b6092c795078fecedde4a (diff)
downloadbeignet-61e8482c3f19d46d0fc247c88f3cba6dddbe749d.tar.gz
test cases for "hadd", "rhadd"
Signed-off-by: Homer Hsing <homer.xing@intel.com> Reviewed-by: Song, Ruiling <ruiling.song@intel.com>
Diffstat (limited to 'utests/compiler_hadd.cpp')
-rw-r--r--utests/compiler_hadd.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/utests/compiler_hadd.cpp b/utests/compiler_hadd.cpp
new file mode 100644
index 00000000..9723702f
--- /dev/null
+++ b/utests/compiler_hadd.cpp
@@ -0,0 +1,40 @@
+#include "utest_helper.hpp"
+
+void compiler_hadd(void)
+{
+ const int n = 32;
+ int src1[n], src2[n];
+
+ // Setup kernel and buffers
+ OCL_CREATE_KERNEL("compiler_hadd");
+ OCL_CREATE_BUFFER(buf[0], 0, n * sizeof(int), NULL);
+ OCL_CREATE_BUFFER(buf[1], 0, n * sizeof(int), NULL);
+ OCL_CREATE_BUFFER(buf[2], 0, n * sizeof(int), NULL);
+ OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
+ OCL_SET_ARG(1, sizeof(cl_mem), &buf[1]);
+ OCL_SET_ARG(2, sizeof(cl_mem), &buf[2]);
+ globals[0] = n;
+ locals[0] = 16;
+
+ OCL_MAP_BUFFER(0);
+ OCL_MAP_BUFFER(1);
+ for (int i = 0; i < n; ++i) {
+ src1[i] = ((int*)buf_data[0])[i] = rand();
+ src2[i] = ((int*)buf_data[1])[i] = rand();
+ }
+ OCL_UNMAP_BUFFER(0);
+ OCL_UNMAP_BUFFER(1);
+
+ OCL_NDRANGE(1);
+
+ OCL_MAP_BUFFER(2);
+ for (int i = 0; i < n; ++i) {
+ long long a = src1[i];
+ a += src2[i];
+ a >>= 1;
+ OCL_ASSERT(((int*)buf_data[2])[i] == (int)a);
+ }
+ OCL_UNMAP_BUFFER(2);
+}
+
+MAKE_UTEST_FROM_FUNCTION(compiler_hadd);