Skip to content

Commit 6b2a2d4

Browse files
committed
format
1 parent e9ddc04 commit 6b2a2d4

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ GPUd() void GPUTPCCFHIPClusterizer::Thread<0>(int32_t nBlocks, int32_t nThreads,
518518
const auto* tails = GetHIPTails(clusterer, row);
519519
const auto& fragment = clusterer.mPmemory->fragment;
520520

521-
auto *clusterPosInRow = clusterer.mPhipClusterPosInRow + row * MaxHIPTailsPerRow;
521+
auto* clusterPosInRow = clusterer.mPhipClusterPosInRow + row * MaxHIPTailsPerRow;
522522

523523
for (uint32_t iTail = iThread + 1; iTail <= nTails; iTail += nThreads) {
524524

@@ -590,5 +590,4 @@ GPUd() void GPUTPCCFHIPClusterizer::Thread<0>(int32_t nBlocks, int32_t nThreads,
590590
}
591591

592592
} // for (uint32_t iTail = iThread + 1; iTail <= nTails; iTail += nThreads)
593-
594593
}

GPU/GPUTracking/TPCClusterFinder/GPUTPCClusterFinder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class GPUTPCClusterFinder : public GPUProcessor
107107
uint32_t* mPclusterPosInRow = nullptr; // store the index where the corresponding cluster is stored in a bucket.
108108
// Required when MC are enabled to write the mc data to the correct position.
109109
// Set to >= mNMaxClusterPerRow if cluster was discarded.
110-
uint32_t *mPhipClusterPosInRow = nullptr; // Identical to mPclusterPosInRow. Need a seperate array for HIP cluster because tail index is used to identify clusters across GPU and CPU
110+
uint32_t* mPhipClusterPosInRow = nullptr; // Identical to mPclusterPosInRow. Need a seperate array for HIP cluster because tail index is used to identify clusters across GPU and CPU
111111
uint16_t* mPchargeMap = nullptr;
112112
uint8_t* mPpeakMap = nullptr;
113113
uint32_t* mPindexMap = nullptr;

0 commit comments

Comments
 (0)