Skip to content

Commit 0c4c1eb

Browse files
committed
Please consider the following formatting changes
1 parent 24405bc commit 0c4c1eb

2 files changed

Lines changed: 4 additions & 2 deletions

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;

GPU/GPUTracking/DataTypes/GPUTPCGeometry.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ class GPUTPCGeometry // TODO: Make values constexpr
9797
GPUd() static constexpr int32_t EndOROC1() { return 97; }
9898
GPUd() static constexpr int32_t EndOROC2() { return 127; }
9999
#else
100-
GPUd() static constexpr int32_t GetRegion(int32_t row) { return (row < 63 ? 0 : row < 63 + 64 ? 1 : 2); }
100+
GPUd() static constexpr int32_t GetRegion(int32_t row) { return (row < 63 ? 0 : row < 63 + 64 ? 1
101+
: 2); }
101102
GPUd() static constexpr int32_t GetRegionRows(int32_t region) { return 0; } // dummy
102103
GPUd() static constexpr int32_t GetRegionStart(int32_t region) { return 0; } // dummy
103104
GPUd() static constexpr int32_t GetROC(int32_t row) { return GetRegion(row); }

0 commit comments

Comments
 (0)