Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions GPU/GPUTracking/Standalone/Benchmark/standalone.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,18 @@ int32_t SetupReconstruction()
steps.steps.setBits(gpudatatypes::RecoStep::TPCClusterFinding, false);
}

// Set settings for synchronous
GPUChainTracking::ApplySyncSettings(procSet, recSet, steps.steps, configStandalone.testSyncAsync || configStandalone.testSync, configStandalone.rundEdx);
int32_t runAsyncQA = procSet.runQA && !configStandalone.testSyncAsyncQcInSync ? procSet.runQA : 0;
if (configStandalone.testSyncAsync) {
procSet.eventDisplay = nullptr;
if (!configStandalone.testSyncAsyncQcInSync) {
procSet.runQA = false;
}
}

// Apply --recoSteps flag last so it takes precedence
// E.g. ApplySyncSettings might enable TPCdEdx, but might not be needed if only clusterizer was requested
if (configStandalone.recoSteps >= 0) {
steps.steps &= configStandalone.recoSteps;
}
Expand All @@ -432,16 +444,6 @@ int32_t SetupReconstruction()
}
}

// Set settings for synchronous
GPUChainTracking::ApplySyncSettings(procSet, recSet, steps.steps, configStandalone.testSyncAsync || configStandalone.testSync, configStandalone.rundEdx);
int32_t runAsyncQA = procSet.runQA && !configStandalone.testSyncAsyncQcInSync ? procSet.runQA : 0;
if (configStandalone.testSyncAsync) {
procSet.eventDisplay = nullptr;
if (!configStandalone.testSyncAsyncQcInSync) {
procSet.runQA = false;
}
}

rec->SetSettings(&grp, &recSet, &procSet, &steps);
if (configStandalone.proc.doublePipeline) {
recPipeline->SetSettings(&grp, &recSet, &procSet, &steps);
Expand Down