summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utests/utest_helper.cpp20
-rw-r--r--utests/utest_helper.hpp2
2 files changed, 22 insertions, 0 deletions
diff --git a/utests/utest_helper.cpp b/utests/utest_helper.cpp
index e87d2309..65c97bb8 100644
--- a/utests/utest_helper.cpp
+++ b/utests/utest_helper.cpp
@@ -917,6 +917,26 @@ int cl_check_subgroups(void)
return 1;
}
+int cl_check_subgroups_short(void)
+{
+ if (!cl_check_subgroups())
+ return 0;
+ std::string extStr;
+ size_t param_value_size;
+ OCL_CALL(clGetDeviceInfo, device, CL_DEVICE_EXTENSIONS, 0, 0, &param_value_size);
+ std::vector<char> param_value(param_value_size);
+ OCL_CALL(clGetDeviceInfo, device, CL_DEVICE_EXTENSIONS, param_value_size,
+ param_value.empty() ? NULL : &param_value.front(), &param_value_size);
+ if (!param_value.empty())
+ extStr = std::string(&param_value.front(), param_value_size-1);
+
+ if (std::strstr(extStr.c_str(), "cl_intel_subgroups_short") == NULL) {
+ printf("No cl_intel_subgroups_short, Skip!");
+ return 0;
+ }
+ return 1;
+}
+
int cl_check_ocl20(void)
{
size_t param_value_size;
diff --git a/utests/utest_helper.hpp b/utests/utest_helper.hpp
index b16aac71..a7613258 100644
--- a/utests/utest_helper.hpp
+++ b/utests/utest_helper.hpp
@@ -321,4 +321,6 @@ extern uint32_t __half_to_float(uint16_t h, bool* isInf = NULL, bool* infSign =
extern uint16_t __float_to_half(uint32_t x);
extern float as_float(uint32_t i);
extern uint32_t as_uint(float f);
+/* Check is intel subgroups short enabled. */
+extern int cl_check_subgroups_short(void);
#endif /* __UTEST_HELPER_HPP__ */