diff --git a/sycl/test-e2e/ESIMD/histogram.cpp b/sycl/test-e2e/ESIMD/histogram.cpp index 580d80ce4d6d9..268a01945d695 100644 --- a/sycl/test-e2e/ESIMD/histogram.cpp +++ b/sycl/test-e2e/ESIMD/histogram.cpp @@ -127,8 +127,8 @@ int main(int argc, char *argv[]) { histogram_CPU(width, height, srcY, cpuHistogram); sycl::image<2> Img(srcY, image_channel_order::rgba, - image_channel_type::unsigned_int32, - range<2>{width / sizeof(uint4), height}); + image_channel_type::unsigned_int8, + range<2>{width / sizeof(uchar4), height}); // Start Timer esimd_test::Timer timer; diff --git a/sycl/test-e2e/ESIMD/histogram_2d.cpp b/sycl/test-e2e/ESIMD/histogram_2d.cpp index 629e7b0157258..6d012d6f270c8 100644 --- a/sycl/test-e2e/ESIMD/histogram_2d.cpp +++ b/sycl/test-e2e/ESIMD/histogram_2d.cpp @@ -131,8 +131,8 @@ int main(int argc, char *argv[]) { histogram_CPU(width, height, srcY, cpuHistogram); sycl::image<2> Img(srcY, image_channel_order::rgba, - image_channel_type::unsigned_int32, - range<2>{width / sizeof(uint4), height}); + image_channel_type::unsigned_int8, + range<2>{width / sizeof(uchar4), height}); // Start Timer esimd_test::Timer timer;