Skip to content

Commit 70adf1e

Browse files
committed
Bug-fix for fullCI build
1 parent b687967 commit 70adf1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizer.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ GPUd() void GPUTPCNNClusterizer::publishClustersReg1(uint glo_idx, GPUSharedMemo
213213
{
214214
Array2D<PackedCharge> chargeMap(reinterpret_cast<PackedCharge*>(clusterer.mPchargeMap));
215215
CPU_ONLY(MCLabelAccumulator labelAccElem(clusterer));
216-
CPU_ONLY(MCLabelAccumulator* labelAcc = CPU_PTR(&labelAccElem));
216+
MCLabelAccumulator* labelAcc = CPU_PTR(&labelAccElem);
217217
tpc::ClusterNative* clusterOut = (onlyMC) ? nullptr : clusterer.mPclusterByRow;
218218
uint full_glo_idx = glo_idx + batchStart;
219219
int model_output_index = glo_idx * (clusterer.nnInternals)->model_reg_1.getNumOutputNodes()[0][1];
@@ -285,7 +285,7 @@ GPUd() void GPUTPCNNClusterizer::publishClustersReg2(uint glo_idx, GPUSharedMemo
285285
{
286286
Array2D<PackedCharge> chargeMap(reinterpret_cast<PackedCharge*>(clusterer.mPchargeMap));
287287
CPU_ONLY(MCLabelAccumulator labelAccElem(clusterer));
288-
CPU_ONLY(MCLabelAccumulator* labelAcc = CPU_PTR(&labelAccElem));
288+
MCLabelAccumulator* labelAcc = CPU_PTR(&labelAccElem);
289289
tpc::ClusterNative* clusterOut = (onlyMC) ? nullptr : clusterer.mPclusterByRow;
290290
uint full_glo_idx = glo_idx + batchStart;
291291
int model_output_index = glo_idx * (clusterer.nnInternals)->model_reg_2.getNumOutputNodes()[0][1];

GPU/GPUTracking/kernels.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ o2_gpu_kernel_file_list(TPCMERGER ERRORS GPUTPCGMMerger.cxx GPUTPCGMSectorTrack.
2323
o2_gpu_kernel_file_list(O2PROPAGATOR TrackParametrization.cxx TrackParametrizationWithError.cxx Propagator.cxx TrackLTIntegral.cxx)
2424
o2_gpu_kernel_file_list(TPCCOMPRESSION GPUTPCCompressionTrackModel.cxx)
2525
o2_gpu_kernel_file_list(TPCDECOMPRESSION GPUTPCCompressionTrackModel.cxx ERRORS)
26-
o2_gpu_kernel_file_list(TPCCLUSTERFINDER ERRORS ClusterAccumulator.cxx)
26+
o2_gpu_kernel_file_list(TPCCLUSTERFINDER ERRORS ClusterAccumulator.cxx GPUTPCNNClusterizer.cxx)
2727
o2_gpu_kernel_file_list(TRDTRACKER GPUTRDTrack.cxx GPUTRDTracker.cxx GPUTRDTrackletWord.cxx GeometryBase.cxx)
2828
o2_gpu_kernel_file_list(GLOBALREFIT TPCMERGER O2PROPAGATOR MATLUT GPUTrackingRefit.cxx)
2929

0 commit comments

Comments
 (0)