Skip to content

Commit f7cdc0b

Browse files
committed
Fixing CI build issue
1 parent bb795c4 commit f7cdc0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizerKernels.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::fil
195195
float output_value = clustererNN.mNnClusterizerBoundaryFillValue;
196196

197197
if ((row < 63 && target_row > 62) || (target_row < 0) || (row > 62 && target_row < 63) || (target_row >= o2::tpc::constants::MAXGLOBALPADROW)) {
198-
for (int32_t target_pad = 0; target_pad < clustererNN.mNnClusterizerFullPadSize; ++target_pad) {
198+
for (uint32_t target_pad = 0; target_pad < clustererNN.mNnClusterizerFullPadSize; ++target_pad) {
199199
if (dtype == 0) {
200200
clustererNN.mInputData_16[write_idx] = (OrtDataType::Float16_t)output_value;
201201
} else {

0 commit comments

Comments
 (0)