We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f4cec commit 53851caCopy full SHA for 53851ca
src/spreadinterp.cpp
@@ -497,9 +497,9 @@ FINUFFT_NEVER_INLINE static int interpSorted_kernel(
497
auto *FINUFFT_RESTRICT ker3 = kernel_values.data() + 2 * MAX_NSPREAD;
498
499
// Loop over interpolation chunks
500
-#pragma omp for schedule(dynamic, 1000) // assign threads to NU targ pts:
501
// main loop over NU trgs, interp each from U
502
// (note: windows omp doesn't like unsigned loop vars)
+#pragma omp for schedule(dynamic, 1000) // assign threads to NU targ pts:
503
for (BIGINT i = 0; i < M; i += CHUNKSIZE) {
504
// Setup buffers for this chunk
505
const UBIGINT bufsize = (i + CHUNKSIZE > M) ? M - i : CHUNKSIZE;
0 commit comments