Skip to content

Commit c1b3c16

Browse files
committed
Please consider the following formatting changes
1 parent eec0f01 commit c1b3c16

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

GPU/GPUTracking/Base/GPUReconstructionCPU.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ inline void GPUReconstructionCPU::runKernel(krnlSetup&& setup, Args&&... args)
161161
throw std::runtime_error("GPUCA_MAX_THREADS exceeded");
162162
}
163163
if (mProcessingSettings.debugLevel >= 3) {
164-
GPUInfo("Running kernel %s (Stream %d, Index %d, Grid %d/%d) on %s", GetKernelName<S, I>(), stream, setup.y.index, nBlocks, nThreads, cpuFallback == 2 ? "CPU (forced)" : cpuFallback ? "CPU (fallback)" : mDeviceName.c_str());
164+
GPUInfo("Running kernel %s (Stream %d, Index %d, Grid %d/%d) on %s", GetKernelName<S, I>(), stream, setup.y.index, nBlocks, nThreads, cpuFallback == 2 ? "CPU (forced)" : cpuFallback ? "CPU (fallback)"
165+
: mDeviceName.c_str());
165166
}
166167
if (nThreads == 0 || nBlocks == 0) {
167168
return;

0 commit comments

Comments
 (0)