Skip to content

Commit 7a9f27b

Browse files
committed
remove comments
1 parent 84121cf commit 7a9f27b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/forder.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ void radix_i(int from, int to, int radix) {
12631263

12641264
if (retgrp) {
12651265
#pragma omp parallel for ordered schedule(dynamic) num_threads(MIN(nth, ngrp)) // #5077
1266-
for (int i=0; i<ngrp; i++) { // reverse the loop since stack instead of recursion
1266+
for (int i=0; i<ngrp; i++) {
12671267
int start = from + starts[ugrp[i]];
12681268
pushState((State){start, start+my_gs[i]-1, radix+1});
12691269
#pragma omp ordered
@@ -1272,7 +1272,7 @@ void radix_i(int from, int to, int radix) {
12721272
} else {
12731273
// flush() is only relevant when retgrp==true so save the redundant ordered clause
12741274
#pragma omp parallel for schedule(dynamic) num_threads(MIN(nth, ngrp)) // #5077
1275-
for (int i=0; i<ngrp; i++) { // reverse the loop since stack instead of recursion
1275+
for (int i=0; i<ngrp; i++) {
12761276
int start = from + starts[ugrp[i]];
12771277
pushState((State){start, start+my_gs[i]-1, radix+1});
12781278
}

0 commit comments

Comments
 (0)