From e0825624103f968d23a4b9ef12a430c510c6138c Mon Sep 17 00:00:00 2001 From: Felix Weiglhofer Date: Tue, 21 Jan 2025 22:24:46 +0100 Subject: [PATCH] GPU: Fix compilation without Vc. --- GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx b/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx index 9a890202524f0..9b249f9ef77a6 100644 --- a/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx +++ b/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx @@ -132,7 +132,7 @@ GPUd() void GPUTPCCFCheckPadBaseline::Thread<0>(int32_t nBlocks, int32_t nThread maxConsecCharges[localpad] = CAMath::Max(maxConsecCharges[localpad], consecCharges[localpad]); const Charge unpackedCharge = Charge(packedCharge) / Charge(1 << PackedCharge::DecimalBits); - maxCharge[localPadId] = CAMath::Max(maxCharge[localPad], unpackedCharge); + maxCharge[localpad] = CAMath::Max(maxCharge[localpad], unpackedCharge); } else { consecCharges[localpad] = 0; }