@@ -100,24 +100,24 @@ int32_t GPUChainTracking::RunTPCCompression()
100100 switch (ProcessingSettings ().tpcCompressionGatherModeKernel ) {
101101 case 0 :
102102 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::unbuffered>(GetGridBlkStep (nBlocksDefault, outputStream, RecoStep::TPCCompression));
103- getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::unbuffered>(RecoStep::TPCCompression, 0 , outputSize);
103+ getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::unbuffered>(RecoStep::TPCCompression, 0 , outputSize, false );
104104 break ;
105105 case 1 :
106106 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered32>(GetGridBlkStep (nBlocksDefault, outputStream, RecoStep::TPCCompression));
107- getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered32>(RecoStep::TPCCompression, 0 , outputSize);
107+ getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered32>(RecoStep::TPCCompression, 0 , outputSize, false );
108108 break ;
109109 case 2 :
110110 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered64>(GetGridBlkStep (nBlocksDefault, outputStream, RecoStep::TPCCompression));
111- getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered64>(RecoStep::TPCCompression, 0 , outputSize);
111+ getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered64>(RecoStep::TPCCompression, 0 , outputSize, false );
112112 break ;
113113 case 3 :
114114 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered128>(GetGridBlkStep (nBlocksDefault, outputStream, RecoStep::TPCCompression));
115- getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered128>(RecoStep::TPCCompression, 0 , outputSize);
115+ getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::buffered128>(RecoStep::TPCCompression, 0 , outputSize, false );
116116 break ;
117117 case 4 :
118118 static_assert ((nBlocksMulti & 1 ) && nBlocksMulti >= 3 );
119119 runKernel<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::multiBlock>(GetGridBlkStep (nBlocksMulti, outputStream, RecoStep::TPCCompression));
120- getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::multiBlock>(RecoStep::TPCCompression, 0 , outputSize);
120+ getKernelTimer<GPUTPCCompressionGatherKernels, GPUTPCCompressionGatherKernels::multiBlock>(RecoStep::TPCCompression, 0 , outputSize, false );
121121 break ;
122122 default :
123123 GPUError (" Invalid compression kernel %d selected." , (int32_t )ProcessingSettings ().tpcCompressionGatherModeKernel );
0 commit comments