From 99b06e25d359a618eb9c5b1e6a27a5674aaa4741 Mon Sep 17 00:00:00 2001 From: James Brodman Date: Fri, 9 May 2025 10:32:07 -0400 Subject: [PATCH] Reduce memory requirements Signed-off-by: James Brodman --- sycl/test-e2e/Basic/image/image_max_size.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sycl/test-e2e/Basic/image/image_max_size.cpp b/sycl/test-e2e/Basic/image/image_max_size.cpp index 6a2333b22baef..a2c0e22a283f0 100644 --- a/sycl/test-e2e/Basic/image/image_max_size.cpp +++ b/sycl/test-e2e/Basic/image/image_max_size.cpp @@ -127,12 +127,12 @@ int main() { // Using max sizes in one image may require too much memory. // Check them one by one. bool HasError = false; - HasError |= testND<2>(Q, MaxWidth2D, 2); - HasError |= testND<2>(Q, 2, MaxHeight2D); + HasError |= testND<2>(Q, MaxWidth2D, 1); + HasError |= testND<2>(Q, 1, MaxHeight2D); - HasError |= testND<3>(Q, MaxWidth3D, 2, 3); - HasError |= testND<3>(Q, 2, MaxHeight3D, 3); - HasError |= testND<3>(Q, 2, 3, MaxDepth3D); + HasError |= testND<3>(Q, MaxWidth3D, 1, 1); + HasError |= testND<3>(Q, 1, MaxHeight3D, 1); + HasError |= testND<3>(Q, 1, 1, MaxDepth3D); // This test requires a significant amount of host memory. // It has been observed that sometimes the test may fail with