Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

[SYCL][ESIMD] Remove sycl::half and double from core types #831

Merged
merged 1 commit into from
Feb 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions SYCL/ESIMD/api/functional/type_coverage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,12 +242,12 @@ template <tested_types required> auto get_tested_types() {
if constexpr (required == tested_types::core) {
return named_type_pack<
char, unsigned char, signed char, short, unsigned short, int,
unsigned int, long, unsigned long, float, sycl::half, double, long long,
unsigned int, long, unsigned long, float, long long,
unsigned long long>::generate("char", "unsigned char", "signed char",
"short", "unsigned short", "int",
"unsigned int", "long", "unsigned long",
"float", "sycl::half", "double",
"long long", "unsigned long long");
"float", "long long",
"unsigned long long");
} else if constexpr (required == tested_types::fp) {
return named_type_pack<float>::generate("float");
} else if constexpr (required == tested_types::fp_extra) {
Expand Down