Skip to content

Commit 7005e1b

Browse files
Fix access to command line arguement
1 parent f63cc55 commit 7005e1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GPU/GPUTracking/Standalone/Benchmark/standalone.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ int32_t RunBenchmark(GPUReconstruction* recUse, GPUChainTracking* chainTrackingU
627627
if (configStandalone.runs > 1) {
628628
printf("Run %d (thread %d)\n", iteration + 1, threadId);
629629
}
630-
if (configStandalone.runsInit > 0 && configStandalone.debugCSV.empty()) {
630+
if (configStandalone.runsInit > 0 && configStandalone.proc.debugCSV.empty()) {
631631
recUse->SetResetTimers(iRun < configStandalone.runsInit);
632632
}
633633
if (configStandalone.outputcontrolmem) {
@@ -687,7 +687,7 @@ int32_t RunBenchmark(GPUReconstruction* recUse, GPUChainTracking* chainTrackingU
687687
chainTrackingAsync->mIOPtrs.nRawClusters[i] = 0;
688688
}
689689
chainTrackingAsync->mIOPtrs.clustersNative = nullptr;
690-
if (configStandalone.runsInit > 0 && configStandalone.debugCSV.empty()) {
690+
if (configStandalone.runsInit > 0 && configStandalone.proc.debugCSV.empty()) {
691691
recAsync->SetResetTimers(iRun < configStandalone.runsInit);
692692
}
693693
tmpRetVal = recAsync->RunChains();

0 commit comments

Comments
 (0)