Skip to content

Commit 3fc7b87

Browse files
committed
[SQUASH] fixed matrix_transpose tests.
Signed-off-by: Konstantin S Bobrovsky <[email protected]>
1 parent 6b5afa7 commit 3fc7b87

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

sycl/test/esimd/on-device/matrix_transpose_glb.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ ESIMD_INLINE void transpose16(int *buf, int MZ, int block_col, int block_row) {
284284
}
285285

286286
bool runTest(unsigned MZ, unsigned block_size) {
287-
queue q(esimd_test::ESIMDSelector{}, esimd_test::createESIMDExceptionHandler(), property::queue::enable_profiling{});
287+
queue q(esimd_test::ESIMDSelector{}, esimd_test::createExceptionHandler(),
288+
property::queue::enable_profiling{});
288289
auto dev = q.get_device();
289290
auto ctxt = q.get_context();
290291
int *M = static_cast<int *>(malloc_shared(MZ * MZ * sizeof(int), dev, ctxt));

sycl/test/esimd/on-device/matrix_transpose_usm.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@ ESIMD_INLINE void transpose16(int *buf, int MZ, int block_col, int block_row) {
325325
}
326326

327327
bool runTest(unsigned MZ, unsigned block_size) {
328-
queue q(esimd_test::ESIMDSelector{}, esimd_test::createESIMDExceptionHandler(), property::queue::enable_profiling{});
328+
queue q(esimd_test::ESIMDSelector{}, esimd_test::createExceptionHandler(),
329+
property::queue::enable_profiling{});
329330
auto dev = q.get_device();
330331
auto ctxt = q.get_context();
331332
int *M = static_cast<int *>(malloc_shared(MZ * MZ * sizeof(int), dev, ctxt));

0 commit comments

Comments
 (0)