Skip to content

Commit 32afd2b

Browse files
author
Sergey Kanaev
committed
[SYCL] Fix review comments
Signed-off-by: Sergey Kanaev <[email protected]>
1 parent dfe385b commit 32afd2b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sycl/test/basic_tests/image.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,12 @@ int main() {
7575

7676
// image wioth write accessor to it in kernel
7777
{
78-
int NX = 1024;
79-
int NY = 1024;
78+
int NX = 32;
79+
int NY = 32;
8080

8181
sycl::image<2> Img(sycl::image_channel_order::rgba,
8282
sycl::image_channel_type::fp32,
8383
sycl::range<2>(NX, NY));
84-
//img.set_final_data();
8584

8685
sycl::queue Q;
8786
Q.submit([&](sycl::handler &CGH) {

0 commit comments

Comments
 (0)