mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: parProfiling: no tabs
This commit is contained in:
@ -186,16 +186,18 @@ void Foam::functionObjects::parProfiling::report()
|
|||||||
scalar allToAllAvg = allToAllStats[2].second()/Pstream::nProcs();
|
scalar allToAllAvg = allToAllStats[2].second()/Pstream::nProcs();
|
||||||
|
|
||||||
Info<< type() << ':' << nl
|
Info<< type() << ':' << nl
|
||||||
<< "\treduce : avg = " << reduceAvg << 's' << nl
|
<< incrIndent
|
||||||
<< "\t min = " << reduceStats[0].second()
|
<< indent << "reduce : avg = " << reduceAvg << 's' << nl
|
||||||
|
<< indent << " min = " << reduceStats[0].second()
|
||||||
<< "s (processor " << reduceStats[0].first() << ')' << nl
|
<< "s (processor " << reduceStats[0].first() << ')' << nl
|
||||||
<< "\t max = " << reduceStats[1].second()
|
<< indent << " max = " << reduceStats[1].second()
|
||||||
<< "s (processor " << reduceStats[1].first() << ')' << nl
|
<< "s (processor " << reduceStats[1].first() << ')' << nl
|
||||||
<< "\tall-all : avg = " << allToAllAvg << 's' << nl
|
<< indent << "all-all : avg = " << allToAllAvg << 's' << nl
|
||||||
<< "\t min = " << allToAllStats[0].second()
|
<< indent << " min = " << allToAllStats[0].second()
|
||||||
<< "s (processor " << allToAllStats[0].first() << ')' << nl
|
<< "s (processor " << allToAllStats[0].first() << ')' << nl
|
||||||
<< "\t max = " << allToAllStats[1].second()
|
<< indent << " max = " << allToAllStats[1].second()
|
||||||
<< "s (processor " << allToAllStats[1].first() << ')' << endl;
|
<< "s (processor " << allToAllStats[1].first() << ')'
|
||||||
|
<< decrIndent << endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user