diff --git a/SYCL/XPTI/kernel/content.cpp b/SYCL/XPTI/kernel/content.cpp index e96411cd8e..2871db5e65 100644 --- a/SYCL/XPTI/kernel/content.cpp +++ b/SYCL/XPTI/kernel/content.cpp @@ -32,8 +32,8 @@ int main() { auto sumR = reduction(sumBuf, cgh, plus<>()); // Reduction kernel is used - // CHECK-OPT:Node create|{{.*}}reduction{{.*}}test1{{.*}}|{{.*}}.cpp:[[# @LINE - 5 ]]:3|{1024, 1, 1}, {{{.*}}, 1, 1}, {0, 0, 0}, 7 - // CHECK-NOOPT:Node create|{{.*}}reduction{{.*}}test1{{.*}}|{{.*}}.cpp:[[# @LINE - 6 ]]:3|{1024, 1, 1}, {{{.*}}, 1, 1}, {0, 0, 0}, 15 + // CHECK-OPT:Node create|{{.*}}reduction{{.*}}test1{{.*}}|{{.*}}.cpp:[[# @LINE - 5 ]]:3|{1024, 1, 1}, {{{.*}}, 1, 1}, {0, 0, 0}, 14 + // CHECK-NOOPT:Node create|{{.*}}reduction{{.*}}test1{{.*}}|{{.*}}.cpp:[[# @LINE - 6 ]]:3|{1024, 1, 1}, {{{.*}}, 1, 1}, {0, 0, 0}, 26 cgh.parallel_for( range<1>{1024}, sumR, [=](id<1> idx, auto &sum) { sum += inputValues[idx]; });