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

[ESIMD] Add test cases for 32-bit accessor based gather/scatter #1014

Merged
merged 1 commit into from
May 3, 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/accessor_gather_scatter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,7 @@ int main(void) {
passed &= test<int, 16, 1>(q);
passed &= test<float, 8, 2>(q);
passed &= test<float, 16, 1>(q);
passed &= test<float, 32, 1>(q);
passed &= test<float, 32, 4>(q);
return passed ? 0 : 1;
}