summaryrefslogtreecommitdiff
path: root/utests/compiler_async_copy.cpp
diff options
context:
space:
mode:
authorYang Rong <rong.r.yang@intel.com>2013-10-21 15:47:56 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-10-21 15:37:20 +0800
commite74c945b3ce98c785a390d0343ce0408360f8211 (patch)
tree6f9e90e70c514436ab3ce797a972042f3858a31b /utests/compiler_async_copy.cpp
parentbaec33cc8ed361575bc3ffbe3f61b08892f87257 (diff)
Add more type for async copy 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_async_copy.cpp')
-rw-r--r--utests/compiler_async_copy.cpp86
1 files changed, 51 insertions, 35 deletions
diff --git a/utests/compiler_async_copy.cpp b/utests/compiler_async_copy.cpp
index 9384f85b..7951ff74 100644
--- a/utests/compiler_async_copy.cpp
+++ b/utests/compiler_async_copy.cpp
@@ -1,39 +1,55 @@
#include "utest_helper.hpp"
+#include <stdint.h>
-static void compiler_async_copy(void)
-{
- const size_t n = 1024;
- const size_t local_size = 32;
- const int copiesPerWorkItem = 5;
+typedef unsigned char uchar;
+typedef unsigned short ushort;
- // Setup kernel and buffers
- OCL_CREATE_KERNEL("compiler_async_copy");
- OCL_CREATE_BUFFER(buf[0], 0, n * copiesPerWorkItem * sizeof(int) * 2, NULL);
- OCL_CREATE_BUFFER(buf[1], 0, n * copiesPerWorkItem * sizeof(int) * 2, NULL);
- OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);
- OCL_SET_ARG(1, sizeof(cl_mem), &buf[1]);
- OCL_SET_ARG(2, local_size*copiesPerWorkItem*sizeof(int)*2, NULL);
- OCL_SET_ARG(3, sizeof(int), &copiesPerWorkItem);
+#define DEF(TYPE, KER_TYPE, VEC_SIZE) \
+static void compiler_async_copy_##KER_TYPE##VEC_SIZE(void) \
+{ \
+ const size_t n = 1024; \
+ const size_t local_size = 32; \
+ const int copiesPerWorkItem = 5; \
+\
+ /* Setup kernel and buffers */\
+ OCL_CREATE_KERNEL_FROM_FILE("compiler_async_copy", "compiler_async_copy_" # KER_TYPE # VEC_SIZE); \
+ OCL_CREATE_BUFFER(buf[0], 0, n * copiesPerWorkItem * sizeof(TYPE) * VEC_SIZE, NULL); \
+ OCL_CREATE_BUFFER(buf[1], 0, n * copiesPerWorkItem * sizeof(TYPE) * VEC_SIZE, NULL); \
+ OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]); \
+ OCL_SET_ARG(1, sizeof(cl_mem), &buf[1]); \
+ OCL_SET_ARG(2, local_size*copiesPerWorkItem*sizeof(TYPE)*VEC_SIZE, NULL); \
+ OCL_SET_ARG(3, sizeof(int), &copiesPerWorkItem); \
+\
+ OCL_MAP_BUFFER(1); \
+ for (uint32_t i = 0; i < n * copiesPerWorkItem * VEC_SIZE; ++i) \
+ ((TYPE*)buf_data[1])[i] = rand(); \
+ OCL_UNMAP_BUFFER(1); \
+\
+ /* Run the kernel */\
+ globals[0] = n; \
+ locals[0] = local_size; \
+ OCL_NDRANGE(1); \
+ OCL_MAP_BUFFER(0); \
+ OCL_MAP_BUFFER(1); \
+\
+ /* Check results */\
+ TYPE *dst = (TYPE*)buf_data[0]; \
+ TYPE *src = (TYPE*)buf_data[1]; \
+ for (uint32_t i = 0; i < n * copiesPerWorkItem * VEC_SIZE; i++) \
+ OCL_ASSERT(dst[i] == src[i]); \
+ OCL_UNMAP_BUFFER(0); \
+ OCL_UNMAP_BUFFER(1); \
+} \
+\
+MAKE_UTEST_FROM_FUNCTION(compiler_async_copy_##KER_TYPE##VEC_SIZE);
- OCL_MAP_BUFFER(1);
- for (uint32_t i = 0; i < n * copiesPerWorkItem * 2; ++i)
- ((int*)buf_data[1])[i] = rand();
- OCL_UNMAP_BUFFER(1);
-
- // Run the kernel
- globals[0] = n;
- locals[0] = local_size;
- OCL_NDRANGE(1);
- OCL_MAP_BUFFER(0);
- OCL_MAP_BUFFER(1);
-
- // Check results
- int *dst = (int*)buf_data[0];
- int *src = (int*)buf_data[1];
- for (uint32_t i = 0; i < n * copiesPerWorkItem * 2; i++)
- OCL_ASSERT(dst[i] == src[i] + 3);
- OCL_UNMAP_BUFFER(0);
- OCL_UNMAP_BUFFER(1);
-}
-
-MAKE_UTEST_FROM_FUNCTION(compiler_async_copy);
+DEF(char, char, 2);
+DEF(uchar, uchar, 2);
+DEF(short, short, 2);
+DEF(ushort, ushort, 2);
+DEF(int, int, 2);
+DEF(uint, uint, 2);
+DEF(int64_t, long, 2);
+DEF(uint64_t, ulong, 2);
+DEF(float, float, 2);
+DEF(double, double, 2);