summaryrefslogtreecommitdiff
path: root/utests
diff options
context:
space:
mode:
authorYang Rong <rong.r.yang@intel.com>2015-05-11 14:02:54 +0800
committerZhigang Gong <zhigang.gong@intel.com>2015-05-15 10:41:29 +0800
commit9ff560d00932eb3e97b9fece016704ad81ac3041 (patch)
tree453498c0cac976b2418107631ebc83b53325b74c /utests
parentf6bbef6404a6026fe774a07989f30a5c3578793e (diff)
Add stuct argument indirect load test.
1. Enable compiler_argument_structure_indirect. 2. Add compiler_argument_structure_indirect, which has select address and load argument instruction. Signed-off-by: Yang Rong <rong.r.yang@intel.com> Reviewed-by: Zhigang Gong <zhigang.gong@intel.com>
Diffstat (limited to 'utests')
-rw-r--r--utests/CMakeLists.txt2
-rw-r--r--utests/compiler_argument_structure_indirect.cpp7
-rw-r--r--utests/compiler_argument_structure_select.cpp37
3 files changed, 43 insertions, 3 deletions
diff --git a/utests/CMakeLists.txt b/utests/CMakeLists.txt
index 899b52c3..d5bf14a3 100644
--- a/utests/CMakeLists.txt
+++ b/utests/CMakeLists.txt
@@ -39,6 +39,8 @@ set (utests_sources
compiler_box_blur.cpp
compiler_insert_to_constant.cpp
compiler_argument_structure.cpp
+ compiler_argument_structure_indirect.cpp
+ compiler_argument_structure_select.cpp
compiler_arith_shift_right.cpp
compiler_mixed_pointer.cpp
compiler_array0.cpp
diff --git a/utests/compiler_argument_structure_indirect.cpp b/utests/compiler_argument_structure_indirect.cpp
index a4584d52..b54432ef 100644
--- a/utests/compiler_argument_structure_indirect.cpp
+++ b/utests/compiler_argument_structure_indirect.cpp
@@ -1,6 +1,6 @@
#include "utest_helper.hpp"
-struct hop { int x[16]; };
+struct hop { int a, x[16]; };
void compiler_argument_structure_indirect(void)
{
@@ -21,8 +21,9 @@ void compiler_argument_structure_indirect(void)
OCL_MAP_BUFFER(0);
// Check results
- for (uint32_t i = 0; i < n; ++i)
- OCL_ASSERT(((uint32_t*)buf_data[0])[i] == 7);
+ for (uint32_t i = 0; i < n; ++i ) {
+ OCL_ASSERT(((uint32_t*)buf_data[0])[i] == (i%16));
+ }
}
MAKE_UTEST_FROM_FUNCTION(compiler_argument_structure_indirect);
diff --git a/utests/compiler_argument_structure_select.cpp b/utests/compiler_argument_structure_select.cpp
new file mode 100644
index 00000000..b46e745e
--- /dev/null
+++ b/utests/compiler_argument_structure_select.cpp
@@ -0,0 +1,37 @@
+#include "utest_helper.hpp"
+
+struct hop{
+ int offset;
+ int threshold0;
+ int threshold1;
+};
+
+void compiler_argument_structure_select(void)
+{
+ const size_t n = 2048;
+ hop h;
+
+ // Setup kernel and buffers
+ OCL_CREATE_KERNEL("compiler_argument_structure_select");
+ OCL_CREATE_BUFFER(buf[0], 0, n * sizeof(uint32_t), NULL);
+ OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
+ h.offset = 2;
+ h.threshold0 = 5;
+ h.threshold1 = 7;
+ OCL_SET_ARG(1, sizeof(hop), &h);
+
+ // Run the kernel
+ globals[0] = n;
+ locals[0] = 16;
+ OCL_NDRANGE(1);
+ OCL_MAP_BUFFER(0);
+
+ // Check results
+ OCL_ASSERT(((uint32_t*)buf_data[0])[0] == 5);
+ for (uint32_t i = 1; i < n; ++i ) {
+ OCL_ASSERT(((uint32_t*)buf_data[0])[i] == 7);
+ }
+}
+
+MAKE_UTEST_FROM_FUNCTION(compiler_argument_structure_select);
+