@@ -58,7 +58,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::fil
5858 auto & clustererNN = processors.tpcNNClusterer [sector];
5959
6060 uint32_t glo_idx = get_global_id (0 );
61- if (glo_idx + batchStart >= clusterer.mPmemory ->counters .nClusters || glo_idx >= clustererNN.mNnClusterizerBatchedMode ) {
61+ if (glo_idx + batchStart >= clusterer.mPmemory ->counters .nClusters || glo_idx >= ( uint32_t ) clustererNN.mNnClusterizerBatchedMode ) {
6262 return ;
6363 }
6464
@@ -143,7 +143,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::fil
143143 auto & clusterer = processors.tpcClusterer [sector];
144144 auto & clustererNN = processors.tpcNNClusterer [sector];
145145
146- if (glo_idx >= clustererNN.mNnClusterizerBatchedMode * clustererNN.mNnClusterizerRowTimeSizeFull ) {
146+ if (glo_idx >= ( uint32_t ) clustererNN.mNnClusterizerBatchedMode * clustererNN.mNnClusterizerRowTimeSizeFull ) {
147147 return ;
148148 }
149149
@@ -272,7 +272,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::det
272272 uint32_t glo_idx = get_global_id (0 );
273273 auto & clusterer = processors.tpcClusterer [sector];
274274 auto & clustererNN = processors.tpcNNClusterer [sector];
275- if (glo_idx + batchStart >= clusterer.mPmemory ->counters .nClusters || glo_idx >= clustererNN.mNnClusterizerBatchedMode ) {
275+ if (glo_idx + batchStart >= clusterer.mPmemory ->counters .nClusters || glo_idx >= ( uint32_t ) clustererNN.mNnClusterizerBatchedMode ) {
276276 return ;
277277 }
278278 if (clustererNN.mNnClusterizerUseClassification ) {
@@ -292,7 +292,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::det
292292 uint32_t glo_idx = get_global_id (0 );
293293 auto & clusterer = processors.tpcClusterer [sector];
294294 auto & clustererNN = processors.tpcNNClusterer [sector];
295- if (glo_idx + batchStart >= clusterer.mPmemory ->counters .nClusters || glo_idx >= clustererNN.mNnClusterizerBatchedMode ) {
295+ if (glo_idx + batchStart >= clusterer.mPmemory ->counters .nClusters || glo_idx >= ( uint32_t ) clustererNN.mNnClusterizerBatchedMode ) {
296296 return ;
297297 }
298298 if (clustererNN.mNnClusterizerUseClassification ) {
@@ -331,7 +331,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::pub
331331 uint32_t glo_idx = get_global_id (0 );
332332 auto & clusterer = processors.tpcClusterer [sector];
333333 auto & clustererNN = processors.tpcNNClusterer [sector];
334- if (glo_idx >= clustererNN.mNnClusterizerBatchedMode ) {
334+ if (glo_idx >= ( uint32_t ) clustererNN.mNnClusterizerBatchedMode ) {
335335 return ;
336336 }
337337
@@ -453,7 +453,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::pub
453453 uint32_t glo_idx = get_global_id (0 );
454454 auto & clusterer = processors.tpcClusterer [sector];
455455 auto & clustererNN = processors.tpcNNClusterer [sector];
456- if (glo_idx >= clustererNN.mNnClusterizerBatchedMode ) {
456+ if (glo_idx >= ( uint32_t ) clustererNN.mNnClusterizerBatchedMode ) {
457457 return ;
458458 }
459459
@@ -611,7 +611,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::pub
611611 uint32_t glo_idx = get_global_id (0 );
612612 auto & clusterer = processors.tpcClusterer [sector];
613613 auto & clustererNN = processors.tpcNNClusterer [sector];
614- if (glo_idx + batchStart >= clusterer.mPmemory ->counters .nClusters || glo_idx >= clustererNN.mNnClusterizerBatchedMode ) {
614+ if (glo_idx + batchStart >= clusterer.mPmemory ->counters .nClusters || glo_idx >= ( uint32_t ) clustererNN.mNnClusterizerBatchedMode ) {
615615 return ;
616616 }
617617 CfArray2D<PackedCharge> chargeMap (reinterpret_cast <PackedCharge*>(clusterer.mPchargeMap ));
0 commit comments