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

[SYCL] Reduce memory size to reduce test complexity and avoid flaky memory related issues #1036

Merged
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
4 changes: 2 additions & 2 deletions SYCL/Plugin/level_zero_batch_test_copy_with_compute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ void validate(uint32_t *result, uint32_t *expect, size_t n) {
}

int main(int argc, char *argv[]) {
size_t M = 65536;
size_t N = 512 / 4;
size_t M = 16;
size_t N = 4;
size_t AL = M * N * sizeof(uint32_t);

sycl::queue q(sycl::default_selector{});
Expand Down