@@ -154,7 +154,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
154154 auto & hbfu = o2::raw::HBFUtils::Instance ();
155155 processAttributes->tfSettings .simStartOrbit = hbfu.getFirstIRofTF (o2::InteractionRecord (0 , hbfu.orbitFirstSampled )).orbit ;
156156
157- LOG (INFO ) << " Initializing run paramerers from GRP bz=" << config.configGRP .solenoidBz << " cont=" << grp->isDetContinuousReadOut (o2::detectors::DetID::TPC);
157+ LOG (info ) << " Initializing run paramerers from GRP bz=" << config.configGRP .solenoidBz << " cont=" << grp->isDetContinuousReadOut (o2::detectors::DetID::TPC);
158158
159159 confParam = config.ReadConfigurableParam ();
160160 processAttributes->allocateOutputOnTheFly = confParam.allocateOutputOnTheFly ;
@@ -165,7 +165,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
165165#ifdef GPUCA_BUILD_EVENT_DISPLAY
166166 processAttributes->displayBackend .reset (new GPUDisplayBackendGlfw);
167167 config.configProcessing .eventDisplay = processAttributes->displayBackend .get ();
168- LOG (INFO ) << " Event display enabled" ;
168+ LOG (info ) << " Event display enabled" ;
169169#else
170170 throw std::runtime_error (" Standalone Event Display not enabled at build time!" );
171171#endif
@@ -178,7 +178,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
178178 int myId = ic.services ().get <const o2::framework::DeviceSpec>().inputTimesliceId ;
179179 int idMax = ic.services ().get <const o2::framework::DeviceSpec>().maxInputTimeslices ;
180180 config.configProcessing .deviceNum = myId;
181- LOG (INFO ) << " GPU device number selected from pipeline id: " << myId << " / " << idMax;
181+ LOG (info ) << " GPU device number selected from pipeline id: " << myId << " / " << idMax;
182182 }
183183 if (config.configProcessing .debugLevel >= 3 && processAttributes->verbosity == 0 ) {
184184 processAttributes->verbosity = 1 ;
@@ -270,12 +270,12 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
270270 config.configCalib .dEdxCorrection = processAttributes->dEdxCorrection .get ();
271271
272272 if (std::filesystem::exists (confParam.gainCalibFile )) {
273- LOG (INFO ) << " Loading tpc gain correction from file " << confParam.gainCalibFile ;
273+ LOG (info ) << " Loading tpc gain correction from file " << confParam.gainCalibFile ;
274274 const auto * gainMap = o2::tpc::utils::readCalPads (confParam.gainCalibFile , " GainMap" )[0 ];
275275 processAttributes->tpcPadGainCalib = GPUO2Interface::getPadGainCalib (*gainMap);
276276 } else {
277277 if (not confParam.gainCalibFile .empty ()) {
278- LOG (WARN ) << " Couldn't find tpc gain correction file " << confParam.gainCalibFile << " . Not applying any gain correction." ;
278+ LOG (warn ) << " Couldn't find tpc gain correction file " << confParam.gainCalibFile << " . Not applying any gain correction." ;
279279 }
280280 processAttributes->tpcPadGainCalib = GPUO2Interface::getPadGainCalibDefault ();
281281 }
@@ -418,7 +418,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
418418 offset += tpcZSonTheFlySizes[i * NEndpoints + j];
419419 }
420420 if (verbosity >= 1 ) {
421- LOG (INFO ) << " GOT ZS on the fly pages FOR SECTOR " << i << " -> pages: " << pageSector;
421+ LOG (info ) << " GOT ZS on the fly pages FOR SECTOR " << i << " -> pages: " << pageSector;
422422 }
423423 }
424424 }
@@ -533,7 +533,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
533533 region.allocator = [name, &buffer, &pc, outputSpec = std::move (outputSpec), verbosity, offset](size_t size) -> void * {
534534 size += offset;
535535 if (verbosity) {
536- LOG (INFO ) << " ALLOCATING " << size << " bytes for " << std::get<DataOrigin>(outputSpec).template as <std::string>() << " /" << std::get<DataDescription>(outputSpec).template as <std::string>() << " /" << std::get<2 >(outputSpec);
536+ LOG (info ) << " ALLOCATING " << size << " bytes for " << std::get<DataOrigin>(outputSpec).template as <std::string>() << " /" << std::get<DataDescription>(outputSpec).template as <std::string>() << " /" << std::get<2 >(outputSpec);
537537 }
538538 std::chrono::time_point<std::chrono::high_resolution_clock> start, end;
539539 if (verbosity) {
@@ -543,7 +543,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
543543 if (verbosity) {
544544 end = std::chrono::high_resolution_clock::now ();
545545 std::chrono::duration<double > elapsed_seconds = end - start;
546- LOG (INFO ) << " Allocation time for " << name << " (" << size << " bytes)" << " : " << elapsed_seconds.count () << " s" ;
546+ LOG (info ) << " Allocation time for " << name << " (" << size << " bytes)" << " : " << elapsed_seconds.count () << " s" ;
547547 }
548548 return (buffer.second = buffer.first ->get ().data ()) + offset;
549549 };
@@ -630,7 +630,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
630630 bool createEmptyOutput = false ;
631631 if (retVal != 0 ) {
632632 if (retVal == 3 && processAttributes->config ->configProcessing .ignoreNonFatalGPUErrors ) {
633- LOG (ERROR ) << " GPU Reconstruction aborted with non fatal error code, ignoring" ;
633+ LOG (error ) << " GPU Reconstruction aborted with non fatal error code, ignoring" ;
634634 createEmptyOutput = true ;
635635 } else {
636636 throw std::runtime_error (" tracker returned error code " + std::to_string (retVal));
@@ -688,7 +688,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
688688 }
689689 }
690690
691- LOG (INFO ) << " found " << ptrs.nOutputTracksTPCO2 << " track(s)" ;
691+ LOG (info ) << " found " << ptrs.nOutputTracksTPCO2 << " track(s)" ;
692692
693693 if (specconfig.outputCompClusters ) {
694694 CompressedClustersROOT compressedClusters = *ptrs.tpcCompressedClusters ;
@@ -746,7 +746,7 @@ DataProcessorSpec getGPURecoWorkflowSpec(gpuworkflow::CompletionPolicyData* poli
746746 processAttributes->qa ->cleanup ();
747747 }
748748 timer.Stop ();
749- LOG (INFO ) << " GPU Reoncstruction time for this TF " << timer.CpuTime () - cput << " s (cpu), " << timer.RealTime () - realt << " s (wall)" ;
749+ LOG (info ) << " GPU Reoncstruction time for this TF " << timer.CpuTime () - cput << " s (cpu), " << timer.RealTime () - realt << " s (wall)" ;
750750 };
751751
752752 return processingFct;
0 commit comments