Skip to content

Commit 0de9070

Browse files
committed
change 4 to 2 in check_device_code/syclcompat_local_mem.cpp
1 parent a765d79 commit 0de9070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/test/check_device_code/syclcompat_local_mem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using namespace sycl;
1414
int main() {
1515
queue Q;
1616

17-
int **Out = malloc_shared<int *>(4, Q);
17+
int **Out = malloc_shared<int *>(2, Q);
1818

1919
Q.submit([&](handler &Cgh) {
2020
Cgh.parallel_for(nd_range<1>({1}, {1}), [=](nd_item<1> Item) {

0 commit comments

Comments
 (0)