Skip to content

Commit 4c76c35

Browse files
formate clean up
1 parent 35b3a34 commit 4c76c35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test-e2e/Matrix/get_coordinate_ops_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ void reduce_and_accumulate(sub_group sg, size_t sg_size, size_t global_idy,
1616
AccessorType &global_acc, TResult *local_sums,
1717
size_t count) {
1818
for (size_t i = 0; i < count; i++) {
19-
local_sums[i] = reduce_over_group(sg, local_sums[i], sycl::plus<>());
19+
local_sums[i] = reduce_over_group(sg, local_sums[i], sycl::plus<>());
2020

2121
// Only the subgroup leader performs the global accumulation
2222
if (global_idy % sg_size == 0) {
2323
sycl::atomic_ref<TResult, sycl::memory_order::relaxed,
2424
sycl::memory_scope::device>
2525
aref(global_acc[i]);
2626
aref.fetch_add(local_sums[i]);
27-
}
27+
}
2828
}
2929
}
3030

0 commit comments

Comments
 (0)