/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2017-2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Application profilingSummary Group grpMiscUtilities Description Collects information from profiling files in the processor sub-directories and summarizes the number of calls and time spent as max/avg/min values. If the values are identical for all processes, only a single value is written. \*---------------------------------------------------------------------------*/ #include "Time.H" #include "polyMesh.H" #include "OSspecific.H" #include "IFstream.H" #include "OFstream.H" #include "argList.H" #include "stringOps.H" #include "timeSelector.H" #include "IOobjectList.H" #include "functionObject.H" using namespace Foam; // The name of the sub-dictionary entry for profiling fileName: static const word profilingFileName("profiling"); // The name of the sub-dictionary entry for profiling: static const word blockNameProfiling("profiling"); // The name of the sub-dictionary entry for profiling and tags of entries // that will be processed to determine (max,avg,min) values const HashTable processing { { "profiling", { "calls", "totalTime", "childTime", "maxMem" } }, { "memInfo", { "size", "free" } }, }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // int main(int argc, char *argv[]) { argList::addNote ( "Collect profiling information from processor directories and" " summarize time spent and number of calls as (max avg min) values." ); timeSelector::addOptions(true, true); // constant(true), zero(true) argList::noParallel(); argList::noFunctionObjects(); // Never use function objects // Note that this should work without problems when profiling is active, // since we don't trigger it anywhere #include "setRootCase.H" #include "createTime.H" // Determine the processor count const label nProcs = fileHandler().nProcs(args.path()); // Create the processor databases PtrList