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 c890afd commit c2e73b6Copy full SHA for c2e73b6
GPU/GPUTracking/DataCompression/GPUTPCDecompression.cxx
@@ -119,5 +119,5 @@ void GPUTPCDecompression::SetMaxData(const GPUTrackingInOutPointers& io)
119
{
120
uint32_t maxUnattachedClsPerSectorRow = std::max_element(mInputGPU.nSliceRowClusters, mInputGPU.nSliceRows);
121
float clsRatio = mInputGPU.nUnattachedClusters > 0 ? float(mInputGPU.nAttachedClusters) / float(mInputGPU.nUnattachedClusters) : 1.0f;
122
- mMaxNativeClustersPerBuffer = std::min(maxUnattachedClsPerSectorRow * clsRatio, mRec->GetProcessingSettings().tpcMaxAttachedClustersPerSectorRow;)
+ mMaxNativeClustersPerBuffer = std::min(maxUnattachedClsPerSectorRow * clsRatio, mRec->GetProcessingSettings().tpcMaxAttachedClustersPerSectorRow);
123
}
0 commit comments