Skip to content

Commit 00b49dd

Browse files
committed
GPU: Fix compiler warning
1 parent 64d58ec commit 00b49dd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

GPU/GPUTracking/Merger/GPUTPCGMMerger.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ GPUd() void GPUTPCGMMerger::MergeBorderTracks<3>(int nBlocks, int nThreads, int
840840
template <>
841841
GPUd() void GPUTPCGMMerger::MergeBorderTracks<2>(int nBlocks, int nThreads, int iBlock, int iThread, int iSlice1, GPUTPCGMBorderTrack* B1, int N1, int iSlice2, GPUTPCGMBorderTrack* B2, int N2, int mergeMode)
842842
{
843-
int statAll = 0, statMerged = 0;
843+
// int statAll = 0, statMerged = 0;
844844
float factor2ys = 1.5; // 1.5;//SG!!!
845845
float factor2zt = 1.5; // 1.5;//SG!!!
846846
float factor2k = 2.0; // 2.2;
@@ -870,7 +870,7 @@ GPUd() void GPUTPCGMMerger::MergeBorderTracks<2>(int nBlocks, int nThreads, int
870870
}
871871
int iBest2 = -1;
872872
int lBest2 = 0;
873-
statAll++;
873+
// statAll++;
874874
for (int k2 = i2; k2 < N2; k2++) {
875875
GPUTPCGMBorderRange r2 = range2[k2];
876876
if (r2.fMin > r1.fMax) {
@@ -937,7 +937,7 @@ GPUd() void GPUTPCGMMerger::MergeBorderTracks<2>(int nBlocks, int nThreads, int
937937
if (iBest2 < 0) {
938938
continue;
939939
}
940-
statMerged++;
940+
// statMerged++;
941941

942942
CADEBUG(GPUInfo("Found match %d %d", b1.TrackID(), iBest2));
943943

0 commit comments

Comments
 (0)