Skip to content

Commit 8a07d59

Browse files
committed
remove comments
Signed-off-by: Fedorov, Andrey <andrey.fedorov@intel.com>
1 parent 972f6ef commit 8a07d59

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sycl/include/CL/sycl/detail/group_sort_impl.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ void merge(const std::size_t offset, InAcc &in_acc1, OutAcc &out_acc1,
109109
const std::size_t l_shift_1 = local_start_1 - start_1;
110110
const std::size_t l_shift_2 = l_search_bound_2 - start_2;
111111

112-
// out_acc1[start_out + l_shift_1 + l_shift_2] = local_l_item_1;
113112
set_value(out_acc1, start_out + l_shift_1 + l_shift_2, local_l_item_1,
114113
is_first);
115114

@@ -122,7 +121,6 @@ void merge(const std::size_t offset, InAcc &in_acc1, OutAcc &out_acc1,
122121
const auto r_shift_1 = local_end_1 - 1 - start_1;
123122
const auto r_shift_2 = r_search_bound_2 - start_2;
124123

125-
// out_acc1[start_out + r_shift_1 + r_shift_2] = local_r_item_1;
126124
set_value(out_acc1, start_out + r_shift_1 + r_shift_2, local_r_item_1,
127125
is_first);
128126
}

0 commit comments

Comments
 (0)