summaryrefslogtreecommitdiff
path: root/utests/compiler_workgroup_scan_exclusive.cpp
diff options
context:
space:
mode:
authorPan Xiuli <xiuli.pan@intel.com>2016-05-16 10:04:59 +0800
committerYang Rong <rong.r.yang@intel.com>2016-05-18 15:45:15 +0800
commit732e50283fa3a26c26a70b638ac1816bc036fdbb (patch)
treecc4ab048086abcdd85d30572b9865e0c7e3040ba /utests/compiler_workgroup_scan_exclusive.cpp
parent0de7a554d96b34821fdccd023fde5f0bd195b583 (diff)
downloadbeignet-732e50283fa3a26c26a70b638ac1816bc036fdbb.tar.gz
Utest: Remove some unsuport work group tests
HSW and IVB does not support long type, now hide these tests. V2: Remove some unsupport kernel. Signed-off-by: Pan Xiuli <xiuli.pan@intel.com> Reviewed-by: Yang Rong <rong.r.yang@intel.com>
Diffstat (limited to 'utests/compiler_workgroup_scan_exclusive.cpp')
-rw-r--r--utests/compiler_workgroup_scan_exclusive.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/utests/compiler_workgroup_scan_exclusive.cpp b/utests/compiler_workgroup_scan_exclusive.cpp
index 37c38dc3..c27a3cb8 100644
--- a/utests/compiler_workgroup_scan_exclusive.cpp
+++ b/utests/compiler_workgroup_scan_exclusive.cpp
@@ -223,7 +223,7 @@ void compiler_workgroup_scan_exclusive_add_long(void)
"compiler_workgroup_scan_exclusive_add_long");
workgroup_generic(WG_SCAN_EXCLUSIVE_ADD, input, expected);
}
-MAKE_UTEST_FROM_FUNCTION(compiler_workgroup_scan_exclusive_add_long);
+MAKE_UTEST_FROM_FUNCTION_WITH_ISSUE(compiler_workgroup_scan_exclusive_add_long);
void compiler_workgroup_scan_exclusive_add_ulong(void)
{
cl_ulong *input = NULL;
@@ -232,7 +232,7 @@ void compiler_workgroup_scan_exclusive_add_ulong(void)
"compiler_workgroup_scan_exclusive_add_ulong");
workgroup_generic(WG_SCAN_EXCLUSIVE_ADD, input, expected);
}
-MAKE_UTEST_FROM_FUNCTION(compiler_workgroup_scan_exclusive_add_ulong);
+MAKE_UTEST_FROM_FUNCTION_WITH_ISSUE(compiler_workgroup_scan_exclusive_add_ulong);
void compiler_workgroup_scan_exclusive_add_float(void)
{
cl_float *input = NULL;
@@ -272,7 +272,7 @@ void compiler_workgroup_scan_exclusive_max_long(void)
"compiler_workgroup_scan_exclusive_max_long");
workgroup_generic(WG_SCAN_EXCLUSIVE_MAX, input, expected);
}
-MAKE_UTEST_FROM_FUNCTION(compiler_workgroup_scan_exclusive_max_long);
+MAKE_UTEST_FROM_FUNCTION_WITH_ISSUE(compiler_workgroup_scan_exclusive_max_long);
void compiler_workgroup_scan_exclusive_max_ulong(void)
{
cl_ulong *input = NULL;
@@ -281,7 +281,7 @@ void compiler_workgroup_scan_exclusive_max_ulong(void)
"compiler_workgroup_scan_exclusive_max_ulong");
workgroup_generic(WG_SCAN_EXCLUSIVE_MAX, input, expected);
}
-MAKE_UTEST_FROM_FUNCTION(compiler_workgroup_scan_exclusive_max_ulong);
+MAKE_UTEST_FROM_FUNCTION_WITH_ISSUE(compiler_workgroup_scan_exclusive_max_ulong);
void compiler_workgroup_scan_exclusive_max_float(void)
{
cl_float *input = NULL;
@@ -321,7 +321,7 @@ void compiler_workgroup_scan_exclusive_min_long(void)
"compiler_workgroup_scan_exclusive_min_long");
workgroup_generic(WG_SCAN_EXCLUSIVE_MIN, input, expected);
}
-MAKE_UTEST_FROM_FUNCTION(compiler_workgroup_scan_exclusive_min_long);
+MAKE_UTEST_FROM_FUNCTION_WITH_ISSUE(compiler_workgroup_scan_exclusive_min_long);
void compiler_workgroup_scan_exclusive_min_ulong(void)
{
cl_ulong *input = NULL;
@@ -330,7 +330,7 @@ void compiler_workgroup_scan_exclusive_min_ulong(void)
"compiler_workgroup_scan_exclusive_min_ulong");
workgroup_generic(WG_SCAN_EXCLUSIVE_MIN, input, expected);
}
-MAKE_UTEST_FROM_FUNCTION(compiler_workgroup_scan_exclusive_min_ulong);
+MAKE_UTEST_FROM_FUNCTION_WITH_ISSUE(compiler_workgroup_scan_exclusive_min_ulong);
void compiler_workgroup_scan_exclusive_min_float(void)
{
cl_float *input = NULL;