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

[ESIMD] Add ABR mask case to esimd_rgba_smoke (commented out due to a… #837

Merged
merged 1 commit into from
Mar 1, 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
2 changes: 2 additions & 0 deletions SYCL/ESIMD/api/esimd_rgba_smoke.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@ int main(void) {
passed &= test<rgba_channel_mask::A>(q);
passed &= test<rgba_channel_mask::R>(q);
passed &= test<rgba_channel_mask::B>(q);
// TODO disabled due to a compiler bug:
//passed &= test<rgba_channel_mask::ABR>(q);

std::cout << (passed ? "Test passed\n" : "Test FAILED\n");
return passed ? 0 : 1;
Expand Down