Skip to content

Commit

Permalink
[SYCL][ESIMD][E2E] Test CLZ/CTZ with more types
Browse files Browse the repository at this point in the history
Signed-off-by: Sarnie, Nick <nick.sarnie@intel.com>
  • Loading branch information
sarnex committed Oct 21, 2024
1 parent e7efbd1 commit 5a3567a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions sycl/test-e2e/ESIMD/clz_ctz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,8 @@ int main() {
Passed &= test<int32_t, true>(q);
Passed &= test<uint32_t, false>(q);
Passed &= test<int32_t, false>(q);
// TODO: Enable once GPU driver issue is fixed
#if 0
Passed &= test<uint8_t, true>(q);

Passed &= test<uint8_t, true>(q);
Passed &= test<int8_t, true>(q);
Passed &= test<uint8_t, false>(q);
Passed &= test<int8_t, false>(q);
Expand All @@ -117,6 +116,6 @@ int main() {
Passed &= test<int16_t, true>(q);
Passed &= test<uint16_t, false>(q);
Passed &= test<int16_t, false>(q);
#endif

return !Passed;
}

0 comments on commit 5a3567a

Please sign in to comment.