Changeset 862b6a for src


Ignore:
Timestamp:
Nov 3, 2011, 7:44:01 PM (13 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

All Actions are timed now, timings are given on exit.

  • Chronos is used for this.
  • new function printTiming() called in cleanUp().
Location:
src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/Action.cpp

    r004ae7 r862b6a  
    159159  state_ptr state = Action::failure;
    160160//  try {
     161    startTimer();
    161162    state = performCall();
     163    endTimer();
    162164//  } catch(MissingValueException&) {
    163165//    DoeLog(0) && (eLog() << Verbose(0) << "There is a value missing for action " << getName() << endl);
  • src/Actions/Action.hpp

    r004ae7 r862b6a  
    173173  Dialog * createDialog();
    174174
     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
    175185private:
    176186
  • src/Actions/Action_impl_header.hpp

    r004ae7 r862b6a  
    215215protected:
    216216  virtual Dialog * fillDialog(Dialog*);
     217
     218  void startTimer() const;
     219  void endTimer() const;
     220
    217221private:
    218222  virtual void getParametersfromValueStorage();
  • src/Actions/Action_impl_pre.hpp

    r004ae7 r862b6a  
    3131#endif
    3232
     33#include "CodePatterns/Chronos.hpp"
     34
    3335#include <boost/preprocessor/cat.hpp>
    3436#include <boost/preprocessor/expand.hpp>
     
    198200};
    199201
     202// =========== time the action ===========
     203// we need this here to have the correct function name
     204void ACTION::startTimer() const { Chronos::getInstance().startTiming( std::string( TOKEN ) ); }
     205void ACTION::endTimer() const { Chronos::getInstance().endTiming( std::string( TOKEN ) ); }
     206
    200207// =========== command for calling action directly ===========
    201208#if defined paramtypes && defined paramreferences
  • src/builder_init.cpp

    r004ae7 r862b6a  
    2020#include "CodePatterns/MemDebug.hpp"
    2121
     22#include <iomanip>
    2223#include <iostream>
    2324
     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"
    2436#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"
    2942#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"
    3344#include "UIElements/CommandLineUI/CommandLineUIFactory.hpp"
    3445#include "UIElements/CommandLineUI/CommandLineParser.hpp"
     46#include "UIElements/Dialog.hpp"
     47#include "UIElements/MainWindow.hpp"
     48#include "UIElements/Menu/MenuDescription.hpp"
    3549#ifdef USE_GUI_QT
    3650#include "UIElements/Qt4/QtUIFactory.hpp"
    3751#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"
    5553#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"
    6054
    6155#include "version.h"
     
    171165}
    172166
     167/** We give a list of all times per action and a total time.
     168 *
     169 */
     170void 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
    173184/** Cleans all singleton instances in an orderly fashion.
    174185 * C++ does not guarantee any specific sequence of removal of single instances
     
    178189void cleanUp()
    179190{
     191  printTimings();
     192  Chronos::purgeInstance();
     193
    180194  RandomNumberDistributionFactory::purgeInstance();
    181195  RandomNumberEngineFactory::purgeInstance();
Note: See TracChangeset for help on using the changeset viewer.