39 RecoStep myStep = RecoStep::TPCCompression;
49 if (gatherMode == 3) {
57 runKernel<GPUTPCCompressionKernels, GPUTPCCompressionKernels::step0attached>(
GetGridAuto(0));
59 WriteReducedClusters();
61 runKernel<GPUTPCCompressionKernels, GPUTPCCompressionKernels::step1unattached>(
GetGridAuto(0));
67 foreignChain->RunTPCClusterizer_prepare(
false, {});
73 memset((
void*)O, 0,
sizeof(*O));
86 if (gatherMode == 3) {
92 int32_t outputStream = 0;
95 outputStream = OutputStream();
97 if (gatherMode >= 2) {
98 if (gatherMode == 2) {
102 for (uint32_t
i = 0;
i <
sizeof(ptrs) /
sizeof(
void*);
i++) {
103 reinterpret_cast<char**
>(&ptrs)[
i] =
reinterpret_cast<char**
>(&ptrs)[
i] + (
reinterpret_cast<char*
>(devicePtr) -
reinterpret_cast<char*
>(Compressor.
mOutputFlat));
108 constexpr uint32_t nBlocksDefault = 2;
109 constexpr uint32_t nBlocksMulti = 1 + 2 * 200;
111 switch (gatherModeKernel) {
113 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::unbuffered>(
GetGridBlkStep(nBlocksDefault, outputStream, RecoStep::TPCCompression));
114 getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::unbuffered>(RecoStep::TPCCompression, 0, outputSize,
false);
117 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered32>(
GetGridBlkStep(nBlocksDefault, outputStream, RecoStep::TPCCompression));
118 getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered32>(RecoStep::TPCCompression, 0, outputSize,
false);
121 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered64>(
GetGridBlkStep(nBlocksDefault, outputStream, RecoStep::TPCCompression));
122 getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered64>(RecoStep::TPCCompression, 0, outputSize,
false);
125 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered128>(
GetGridBlkStep(nBlocksDefault, outputStream, RecoStep::TPCCompression));
126 getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered128>(RecoStep::TPCCompression, 0, outputSize,
false);
129 static_assert((nBlocksMulti & 1) && nBlocksMulti >= 3);
130 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::multiBlock>(
GetGridBlkStep(nBlocksMulti, outputStream, RecoStep::TPCCompression));
131 getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::multiBlock>(RecoStep::TPCCompression, 0, outputSize,
false);
134 GPUError(
"Invalid compression kernel %d selected.", (int32_t)gatherModeKernel);
137 if (gatherMode == 3) {
141 const size_t blockSize = CAMath::nextMultipleOf<1024>(copySize / 30);
142 const uint32_t
n = (copySize + blockSize - 1) / blockSize;
143 for (uint32_t
i = 0;
i <
n;
i++) {
144 GPUMemCpy(myStep, hostFlatPtr +
i * blockSize, deviceFlatPts +
i * blockSize, CAMath::Min(blockSize, copySize -
i * blockSize), outputStream,
false);
147 GPUMemCpy(myStep, hostFlatPtr, deviceFlatPts, copySize, outputStream,
false);
151 int8_t direction = 0;
152 if (gatherMode == 0) {
153 P = &CompressorShadow.
mPtrs;
154 }
else if (gatherMode == 1) {
157 gatherTimer = &getTimer<GPUTPCCompressionKernels>(
"GPUTPCCompression_GatherOnCPU", 0);
158 gatherTimer->
Start();
198 if (gatherMode == 1) {
202 if (gatherMode == 3) {
207 if (mPipelineFinalizationCtx ==
nullptr) {
226 GPUFatal(
"tpcApplyCFCutsAtDecoding, tpcApplyClusterFilterOnCPU and tpcCutTimeBin currently require tpcUseOldCPUDecoding");
231 std::unique_ptr<GPUParam> tmpParam;
232 int32_t inputStream = 0;
234 if (useTemporaryBz) {
235 tmpParam = std::make_unique<GPUParam>(
param());
241 const bool runFiltering = needFullFiltering || runTimeBinCutFiltering;
244 auto allocatorFinal = [
this](
size_t size) {
249 std::unique_ptr<ClusterNative[]> tmpBuffer;
250 auto allocatorTmp = [&tmpBuffer](
size_t size) {
253 auto& decompressTimer = getTimer<TPCClusterDecompressor>(
"TPCDecompression", 0);
254 auto allocatorUse = runFiltering ? std::function<
ClusterNative*(size_t)>{allocatorTmp} : std::function<
ClusterNative*(size_t)>{allocatorFinal};
255 decompressTimer.Start();
257 GPUError(
"Error decompressing clusters");
263 decompressTimer.Stop();
271 mInputsHost->mPclusterNativeAccess->setOffsetPtrs();
278 RecoStep myStep = RecoStep::TPCDecompression;
294 inputGPU = cmprClsHost;
297 inputGPU = cmprClsHost;
304 for (int32_t iStream = 0; iStream < nStreams; iStream++) {
305 uint32_t startTrack = cmprClsHost.
nTracks / nStreams * iStream;
306 uint32_t endTrack = cmprClsHost.
nTracks / nStreams * (iStream + 1) + (iStream < nStreams - 1 ? 0 : cmprClsHost.
nTracks % nStreams);
307 uint32_t numTracks = endTrack - startTrack;
310 uint32_t numClustersRed = numClusters - numTracks;
322 GPUMemCpy(myStep, inputGPUShadow.
qPtA + startTrack, cmprClsHost.
qPtA + startTrack, numTracks *
sizeof(cmprClsHost.
qPtA[0]), iStream, toGPU);
323 GPUMemCpy(myStep, inputGPUShadow.
rowA + startTrack, cmprClsHost.
rowA + startTrack, numTracks *
sizeof(cmprClsHost.
rowA[0]), iStream, toGPU);
324 GPUMemCpy(myStep, inputGPUShadow.
sliceA + startTrack, cmprClsHost.
sliceA + startTrack, numTracks *
sizeof(cmprClsHost.
sliceA[0]), iStream, toGPU);
325 GPUMemCpy(myStep, inputGPUShadow.
timeA + startTrack, cmprClsHost.
timeA + startTrack, numTracks *
sizeof(cmprClsHost.
timeA[0]), iStream, toGPU);
326 GPUMemCpy(myStep, inputGPUShadow.
padA + startTrack, cmprClsHost.
padA + startTrack, numTracks *
sizeof(cmprClsHost.
padA[0]), iStream, toGPU);
342 uint32_t decodedAttachedClusters = 0;
349 offset += unattachedOffset;
357 if (runTimeBinCutFiltering) {
389 uint32_t batchSize = doGPU ? 6 :
NSECTORS;
394 if (!runTimeBinCutFiltering) {
400 if (runTimeBinCutFiltering) {
404 runKernel<GPUTPCDecompressionUtilKernels, GPUTPCDecompressionUtilKernels::countFilteredClusters>(
GetGridAutoStep(unattachedStream, RecoStep::TPCDecompression));
430 runKernel<GPUTPCDecompressionUtilKernels, GPUTPCDecompressionUtilKernels::storeFilteredClusters>(
GetGridAutoStep(unattachedStream, RecoStep::TPCDecompression));
435 runKernel<GPUTPCDecompressionUtilKernels, GPUTPCDecompressionUtilKernels::sortPerSectorRow>(
GetGridAutoStep(unattachedStream, RecoStep::TPCDecompression));
450 if (useTemporaryBz) {