Skip to content

Commit 490170e

Browse files
committed
mISlice -> mISector
1 parent 6c6cb95 commit 490170e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizer.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,11 @@ GPUd() void GPUTPCNNClusterizer::fillInputData(int32_t nBlocks, int32_t nThreads
197197
}
198198
if ((clusterer.nnInternals)->nnClusterizerAddIndexData) {
199199
if (dtype == 0) {
200-
(clusterer.nnInternals)->inputData16[write_idx] = (OrtDataType::Float16_t)(clusterer.mISlice / 36.f);
200+
(clusterer.nnInternals)->inputData16[write_idx] = (OrtDataType::Float16_t)(clusterer.mISector / 36.f);
201201
(clusterer.nnInternals)->inputData16[write_idx + 1] = (OrtDataType::Float16_t)(row / 152.f);
202202
(clusterer.nnInternals)->inputData16[write_idx + 2] = (OrtDataType::Float16_t)(static_cast<float>(pad) / clusterer.Param().tpcGeometry.NPads(row));
203203
} else {
204-
(clusterer.nnInternals)->inputData32[write_idx] = clusterer.mISlice / 36.f;
204+
(clusterer.nnInternals)->inputData32[write_idx] = clusterer.mISector / 36.f;
205205
(clusterer.nnInternals)->inputData32[write_idx + 1] = row / 152.f;
206206
(clusterer.nnInternals)->inputData32[write_idx + 2] = static_cast<float>(pad) / clusterer.Param().tpcGeometry.NPads(row);
207207
}

0 commit comments

Comments
 (0)