Skip to content

Commit 82d76e5

Browse files
committed
Please consider the following formatting changes
1 parent b5ace35 commit 82d76e5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizerKernels.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::pub
427427
// const int MAX_CHARS = 4096;
428428
// char buffer[MAX_CHARS];
429429
// int pos = 0;
430-
//
430+
//
431431
// auto appendChar = [&](char c) {
432432
// if (pos < MAX_CHARS - 1) buffer[pos++] = c;
433433
// };
@@ -458,7 +458,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::pub
458458
// if (frac < 0) frac = 0;
459459
// }
460460
// };
461-
//
461+
//
462462
// appendStr("(NN CLUS) DEBUG: Boundary cluster detected (sector ");
463463
// appendUInt(sector);
464464
// appendStr(", row ");
@@ -474,10 +474,10 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::pub
474474
// appendStr(" dtype=");
475475
// appendInt(dtype);
476476
// appendStr("] INPUT:");
477-
//
477+
//
478478
// int elemSize = clustererNN.mNnClusterizerElementSize;
479479
// int baseIdx = glo_idx * elemSize;
480-
//
480+
//
481481
// int maxPrint = elemSize;
482482
// for (int i = 0; i < maxPrint; ++i) {
483483
// appendChar(' ');
@@ -486,7 +486,7 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::pub
486486
// appendFloat(v);
487487
// if (pos > (MAX_CHARS - 32)) { appendStr(" ..."); break; }
488488
// }
489-
//
489+
//
490490
// buffer[pos] = 0;
491491
// printf("%s\n", buffer);
492492
// }
@@ -754,7 +754,7 @@ GPUd() bool GPUTPCNNClusterizerKernels::isBoundary(int32_t row, int32_t pad, int
754754

755755
GPUd() bool GPUTPCNNClusterizerKernels::isBoundaryPublish(int32_t idx, int32_t row, float& pad, float& time)
756756
{
757-
if(pad < 0) {
757+
if (pad < 0) {
758758
// printf("(NN CLUS) WARNING: Boundary detected, idx = %d, pad < 0: row %d, pad %f (%d, %d), time %f (%d, %d)\n", idx, row, pad, 0, static_cast<int>(GPUTPCGeometry::NPads(row)), time, 0, TPC_MAX_FRAGMENT_LEN_GPU);
759759
pad = 0.f;
760760
return true;

0 commit comments

Comments
 (0)