We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02684cb commit 637cbe0Copy full SHA for 637cbe0
1 file changed
GPU/GPUTracking/Base/GPUReconstructionProcessing.cxx
@@ -51,7 +51,9 @@ void GPUReconstructionProcessing::runParallelOuterLoop(bool doGPU, uint32_t nThr
51
tbb::parallel_for<uint32_t>(0, nThreads, lambda, tbb::simple_partitioner());
52
});
53
} else {
54
- lambda(0);
+ for (uint32_t i = 0; i < nThreads; i++) {
55
+ lambda(i);
56
+ }
57
}
58
59
0 commit comments