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

Commit f5faacd

Browse files
authored
[SYCL] Reduce memory size to reduce test complexity and avoid flaky memory related issues (#1036)
1 parent 6bf5d74 commit f5faacd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SYCL/Plugin/level_zero_batch_test_copy_with_compute.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ void validate(uint32_t *result, uint32_t *expect, size_t n) {
246246
}
247247

248248
int main(int argc, char *argv[]) {
249-
size_t M = 65536;
250-
size_t N = 512 / 4;
249+
size_t M = 16;
250+
size_t N = 4;
251251
size_t AL = M * N * sizeof(uint32_t);
252252

253253
sycl::queue q(sycl::default_selector{});

0 commit comments

Comments
 (0)