Skip to content

Commit ca6223a

Browse files
committed
Replaced one function
1 parent a8399f9 commit ca6223a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/test/extensions/group-algorithm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void test(queue q, InputContainer input, OutputContainer output,
5858
out[3] = exclusive_scan(g, in[lid], binary_op);
5959
out[4] = broadcast(g, in[lid]);
6060
out[5] = any_of(g, in.get_pointer(), in.get_pointer() + N, pred);
61-
out[6] = all_of_group(g, pred(in[lid]));
61+
out[6] = all_of(g, pred(in[lid]));
6262
if (leader(g)) {
6363
out[7]++;
6464
}

0 commit comments

Comments
 (0)