- Timestamp:
- Nov 3, 2011, 7:44:01 PM (13 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 50e4e5
- Parents:
- 004ae7
- git-author:
- Frederik Heber <heber@…> (10/27/11 09:32:27)
- git-committer:
- Frederik Heber <heber@…> (11/03/11 19:44:01)
- Location:
- src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/Action.cpp
r004ae7 r862b6a 159 159 state_ptr state = Action::failure; 160 160 // try { 161 startTimer(); 161 162 state = performCall(); 163 endTimer(); 162 164 // } catch(MissingValueException&) { 163 165 // DoeLog(0) && (eLog() << Verbose(0) << "There is a value missing for action " << getName() << endl); -
src/Actions/Action.hpp
r004ae7 r862b6a 173 173 Dialog * createDialog(); 174 174 175 /** Virtual function that starts the timer. 176 * 177 */ 178 virtual void startTimer() const {}; 179 180 /** Virtual function that ends the timer. 181 * 182 */ 183 virtual void endTimer() const {}; 184 175 185 private: 176 186 -
src/Actions/Action_impl_header.hpp
r004ae7 r862b6a 215 215 protected: 216 216 virtual Dialog * fillDialog(Dialog*); 217 218 void startTimer() const; 219 void endTimer() const; 220 217 221 private: 218 222 virtual void getParametersfromValueStorage(); -
src/Actions/Action_impl_pre.hpp
r004ae7 r862b6a 31 31 #endif 32 32 33 #include "CodePatterns/Chronos.hpp" 34 33 35 #include <boost/preprocessor/cat.hpp> 34 36 #include <boost/preprocessor/expand.hpp> … … 198 200 }; 199 201 202 // =========== time the action =========== 203 // we need this here to have the correct function name 204 void ACTION::startTimer() const { Chronos::getInstance().startTiming( std::string( TOKEN ) ); } 205 void ACTION::endTimer() const { Chronos::getInstance().endTiming( std::string( TOKEN ) ); } 206 200 207 // =========== command for calling action directly =========== 201 208 #if defined paramtypes && defined paramreferences -
src/builder_init.cpp
r004ae7 r862b6a 20 20 #include "CodePatterns/MemDebug.hpp" 21 21 22 #include <iomanip> 22 23 #include <iostream> 23 24 25 #include "config.hpp" 26 #include "molecule.hpp" 27 #include "World.hpp" 28 29 #include "Actions/ActionExceptions.hpp" 30 #include "Actions/ActionHistory.hpp" 31 #include "Actions/ActionRegistry.hpp" 32 33 #include "CodePatterns/Chronos.hpp" 34 #include "CodePatterns/Log.hpp" 35 #include "Element/periodentafel.hpp" 24 36 #include "Graph/BondGraph.hpp" 25 #include "config.hpp" 26 #include "CodePatterns/Log.hpp" 27 #include "molecule.hpp" 28 #include "Element/periodentafel.hpp" 37 #include "Parser/ChangeTracker.hpp" 38 #include "Parser/FormatParserStorage.hpp" 39 #include "RandomNumbers/RandomNumberDistributionFactory.hpp" 40 #include "RandomNumbers/RandomNumberEngineFactory.hpp" 41 #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" 29 42 #include "Tesselation/tesselationhelpers.hpp" 30 #include "UIElements/UIFactory.hpp" 31 #include "UIElements/Menu/MenuDescription.hpp" 32 #include "UIElements/TextUI/TextUIFactory.hpp" 43 #include "UIElements/CommandLineUI/CommandLineUIFactory.hpp" 33 44 #include "UIElements/CommandLineUI/CommandLineUIFactory.hpp" 34 45 #include "UIElements/CommandLineUI/CommandLineParser.hpp" 46 #include "UIElements/Dialog.hpp" 47 #include "UIElements/MainWindow.hpp" 48 #include "UIElements/Menu/MenuDescription.hpp" 35 49 #ifdef USE_GUI_QT 36 50 #include "UIElements/Qt4/QtUIFactory.hpp" 37 51 #endif 38 #include "UIElements/MainWindow.hpp" 39 #include "UIElements/Dialog.hpp" 40 //#include "Menu/ActionMenuItem.hpp" 41 #include "CodePatterns/Verbose.hpp" 42 #include "World.hpp" 43 44 #include "Actions/ActionExceptions.hpp" 45 #include "Actions/ActionHistory.hpp" 46 #include "Actions/ActionRegistry.hpp" 47 48 #include "RandomNumbers/RandomNumberDistributionFactory.hpp" 49 #include "RandomNumbers/RandomNumberEngineFactory.hpp" 50 #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" 51 52 #include "Parser/ChangeTracker.hpp" 53 #include "Parser/FormatParserStorage.hpp" 54 52 #include "UIElements/TextUI/TextUIFactory.hpp" 55 53 #include "UIElements/UIFactory.hpp" 56 #include "UIElements/TextUI/TextUIFactory.hpp"57 #include "UIElements/CommandLineUI/CommandLineUIFactory.hpp"58 #include "UIElements/MainWindow.hpp"59 #include "UIElements/Dialog.hpp"60 54 61 55 #include "version.h" … … 171 165 } 172 166 167 /** We give a list of all times per action and a total time. 168 * 169 */ 170 void printTimings() 171 { 172 const MoleCuilder::ActionRegistry &AR = MoleCuilder::ActionRegistry::getInstance(); 173 const Chronos &Chron = Chronos::getInstance(); 174 std::cout << "(Non-zero) Times used per Action [seconds]:" << std::endl; 175 for (MoleCuilder::ActionRegistry::const_iterator iter = AR.getBeginIter(); iter != AR.getEndIter(); ++iter) 176 if (Chron.getTime(iter->first) != 0.) { // dont give if action has not been used 177 std::cout << " " << setiosflags(ios::left) << setw(24) << setfill('.') << iter->first; 178 std::cout << setiosflags(ios::left) << setprecision(6) << fixed << Chron.getTime(iter->first) << std::endl; 179 } 180 std::cout << "Total Time: " << Chron.SumUpTotalTime() << " seconds" << std::endl; 181 std::cout << "Total Actions called: " << Chron.SumUpTotalFunctions() << std::endl; 182 } 183 173 184 /** Cleans all singleton instances in an orderly fashion. 174 185 * C++ does not guarantee any specific sequence of removal of single instances … … 178 189 void cleanUp() 179 190 { 191 printTimings(); 192 Chronos::purgeInstance(); 193 180 194 RandomNumberDistributionFactory::purgeInstance(); 181 195 RandomNumberEngineFactory::purgeInstance();
Note:
See TracChangeset
for help on using the changeset viewer.