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

Commit b36a1f9

Browse files
[ESIMD] Fix sporadically timeouts of matrix_transpose test (#391)
1 parent 0b69a62 commit b36a1f9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

SYCL/ESIMD/matrix_transpose.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -373,13 +373,13 @@ int main(int argc, char *argv[]) {
373373
bool success = true;
374374
success &= runTest(MZ, 16);
375375
if (argc == 1) {
376-
success &= runTest(1U << 10, 8);
377-
success &= runTest(1U << 11, 8);
378-
success &= runTest(1U << 12, 8);
376+
success &= runTest(1U << 7, 8);
377+
success &= runTest(1U << 8, 8);
378+
success &= runTest(1U << 9, 8);
379379
// success &= runTest(1U << 13, 8);
380-
success &= runTest(1U << 10, 16);
381-
success &= runTest(1U << 11, 16);
382-
success &= runTest(1U << 12, 16);
380+
success &= runTest(1U << 7, 16);
381+
success &= runTest(1U << 8, 16);
382+
success &= runTest(1U << 9, 16);
383383
// success &= runTest(1U << 13, 16);
384384
}
385385

0 commit comments

Comments
 (0)