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.
2 parents 3bfb62d + 824875b commit c6d61a7Copy full SHA for c6d61a7
RecoLocalTracker/SiPixelClusterizer/plugins/alpaka/PixelClustering.h
@@ -493,6 +493,12 @@ namespace ALPAKA_ACCELERATOR_NAMESPACE::pixelClustering {
493
}
494
alpaka::syncBlockThreads(acc);
495
496
+ // Clamp fakePixels to maxFakesInModule
497
+ if (fakePixels > maxFakesInModule) {
498
+ fakePixels = maxFakesInModule;
499
+ alpaka::syncBlockThreads(acc);
500
+ }
501
+
502
} // if (applyDigiMorphing)
503
} // if (lastPixel > 1)
504
} // if constexpr (not isPhase2)
0 commit comments