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 a075c43 commit 587c3e6Copy full SHA for 587c3e6
GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizerKernels.cxx
@@ -155,9 +155,9 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::fil
155
uint32_t transient_index = glo_idx - (base_idx * clustererNN.mNnClusterizerRowTimeSizeThreads);
156
157
// Early exit for out-of-bounds threads
158
- // if (base_idx + batchStart >= clusterer.mPmemory->counters.nClusters) {
159
- // return;
160
- // }
+ if (base_idx + batchStart >= clusterer.mPmemory->counters.nClusters) {
+ return;
+ }
161
CfArray2D<PackedCharge> chargeMap(reinterpret_cast<PackedCharge*>(clusterer.mPchargeMap));
162
CfArray2D<uint8_t> isPeakMap(clusterer.mPpeakMap);
163
0 commit comments