Skip to content
Snippets Groups Projects
Commit 22612b40 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

more fancy profiling report (adding type)

parent 5f0c643d
No related branches found
No related tags found
No related merge requests found
Pipeline #6099 passed
...@@ -281,7 +281,7 @@ bool ProcessorBase::check(CheckLog& _log, std::shared_ptr<NodeBase> _node_ptr, b ...@@ -281,7 +281,7 @@ bool ProcessorBase::check(CheckLog& _log, std::shared_ptr<NodeBase> _node_ptr, b
void ProcessorBase::printProfiling(std::ostream& _stream) const void ProcessorBase::printProfiling(std::ostream& _stream) const
{ {
_stream << "\n" << getName() << ":" _stream << "\n" << getType() << " - " << getName() << ":"
<< "\n\ttotal time: " << 1e-6*(acc_duration_capture_ + acc_duration_kf_).count()<< " s" << "\n\ttotal time: " << 1e-6*(acc_duration_capture_ + acc_duration_kf_).count()<< " s"
<< "\n\tProcessing captures:" << "\n\tProcessing captures:"
<< "\n\t\ttotal time: " << 1e-6*acc_duration_capture_.count() << " s" << "\n\t\ttotal time: " << 1e-6*acc_duration_capture_.count() << " s"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment