Skip to content

Commit 4b350a7

Browse files
committed
[SYCL]Fix parameter type
Signed-off-by: Hu, Peisen <[email protected]>
1 parent 18ed413 commit 4b350a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/test-e2e/GroupAlgorithm/root_group.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void testRootGroupFunctions() {
157157
q.submit([&](sycl::handler &h) {
158158
sycl::accessor testResults{testResultsBuf, h};
159159
h.parallel_for<class RootGroupFunctionsKernel>(range,
160-
TestKernel2(&testResults));
160+
TestKernel2(testResults));
161161
});
162162
sycl::host_accessor testResults{testResultsBuf};
163163
for (int i = 0; i < testCount; i++) {

0 commit comments

Comments
 (0)