Skip to content

Commit 6f8d626

Browse files
authored
[SYCL][ESIMD] Remove sycl::half and double from core types (intel/llvm-test-suite#831)
1 parent 1a0fd8c commit 6f8d626

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SYCL/ESIMD/api/functional/type_coverage.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,12 +242,12 @@ template <tested_types required> auto get_tested_types() {
242242
if constexpr (required == tested_types::core) {
243243
return named_type_pack<
244244
char, unsigned char, signed char, short, unsigned short, int,
245-
unsigned int, long, unsigned long, float, sycl::half, double, long long,
245+
unsigned int, long, unsigned long, float, long long,
246246
unsigned long long>::generate("char", "unsigned char", "signed char",
247247
"short", "unsigned short", "int",
248248
"unsigned int", "long", "unsigned long",
249-
"float", "sycl::half", "double",
250-
"long long", "unsigned long long");
249+
"float", "long long",
250+
"unsigned long long");
251251
} else if constexpr (required == tested_types::fp) {
252252
return named_type_pack<float>::generate("float");
253253
} else if constexpr (required == tested_types::fp_extra) {

0 commit comments

Comments
 (0)