Changeset 6b3a37 for src/Fragmentation


Ignore:
Timestamp:
Jul 2, 2012, 7:54:12 AM (12 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:
425fc6
Parents:
6ea7f4
git-author:
Frederik Heber <heber@…> (03/04/12 22:30:57)
git-committer:
Frederik Heber <heber@…> (07/02/12 07:54:12)
Message:

Added begin(),end() for idle_queue of WorkerPool.

  • this allows shutting down Workers without marking and then unmarking them as busy by FragmentScheduler.
  • also the returned iterators are const and hence allow to see the which workers are idle but not to modify them this way.
  • also added WorkerPool::hasBusyWorkers() to allow for waiting server shutdown until all workers have returned from work.
  • added some tests for this in WorkerPoolUnitTest.
Location:
src/Fragmentation/Automation
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Automation/FragmentScheduler.cpp

    r6ea7f4 r6b3a37  
    516516  LOG(2, "INFO: Shutting down workers ...");
    517517
     518  // \todo We have to wait here until all workers are done
     519  // first, sign off such that no new jobs are given to workers
     520  pool.signOff(this, WorkerPool::WorkerIdle);
     521  while (pool.hasBusyWorkers())
     522    ;
     523
    518524  // give all workers shutdown signal
    519   while (pool.presentIdleWorkers()) {
    520     const WorkerAddress address = pool.getNextIdleWorker();
    521     pool.unmarkWorkerBusy(address);
     525  for (WorkerPool::Idle_Queue_t::const_iterator iter = pool.begin_idle(); iter != pool.end_idle(); ++iter) {
     526    const WorkerAddress address = iter->second;
    522527    shutdownWorker(address);
    523     pool.removeWorker(address);
    524   }
     528  }
     529  pool.removeAllWorkers();
    525530}
    526531
  • src/Fragmentation/Automation/Pool/WorkerPool.hpp

    r6ea7f4 r6b3a37  
    2323
    2424class FragmentQueue;
     25class FragmentScheduler;
    2526class WorkerPoolTest;
    2627
     
    6364  typedef std::multimap<priority_t, WorkerAddress> Idle_Queue_t;
    6465
     66  // constant iterators on idle queue contents
     67  Idle_Queue_t::const_iterator begin_idle() const {
     68    return idle_queue.begin();
     69  }
     70  Idle_Queue_t::const_iterator end_idle() const {
     71    return idle_queue.end();
     72  }
     73
    6574  Idle_Queue_t::iterator getIdleWorker(const WorkerAddress &address);
    6675  void markWorkerBusy(Idle_Queue_t::iterator &iter);
     76
     77  bool hasBusyWorkers() const {
     78    return (busy_queue.size() != 0);
     79  }
    6780
    6881private:
     
    7487
    7588private:
     89  //!> FragmentScheduler needs access to removeAllWorkers()
     90  friend class FragmentScheduler;
    7691  void removeAllWorkers();
    7792
  • src/Fragmentation/Automation/unittests/WorkerPoolUnitTest.cpp

    r6ea7f4 r6b3a37  
    8181
    8282  // add worker
     83  CPPUNIT_ASSERT_EQUAL( (size_t)0, pool->idle_queue.size() );
     84  CPPUNIT_ASSERT_EQUAL( (size_t)0, pool->busy_queue.size() );
     85  CPPUNIT_ASSERT_EQUAL( (size_t)0, pool->pool.size() );
     86  CPPUNIT_ASSERT ( pool->begin_idle() == pool->end_idle() );
    8387  CPPUNIT_ASSERT( pool->addWorker(address) );
    8488  CPPUNIT_ASSERT_EQUAL( (size_t)1, pool->idle_queue.size() );
    8589  CPPUNIT_ASSERT_EQUAL( (size_t)0, pool->busy_queue.size() );
    8690  CPPUNIT_ASSERT_EQUAL( (size_t)1, pool->pool.size() );
     91  CPPUNIT_ASSERT ( pool->begin_idle() != pool->end_idle() );
     92  CPPUNIT_ASSERT_EQUAL( address, pool->begin_idle()->second );
    8793  CPPUNIT_ASSERT( addobserver->wasNotified );
    8894  CPPUNIT_ASSERT( !removeobserver->wasNotified );
     
    122128  // check that not busy
    123129  CPPUNIT_ASSERT( !pool->isWorkerBusy(address) );
     130  CPPUNIT_ASSERT( !pool->hasBusyWorkers() );
    124131  CPPUNIT_ASSERT_EQUAL( (size_t)1, pool->idle_queue.size() );
    125132  CPPUNIT_ASSERT_EQUAL( (size_t)0, pool->busy_queue.size() );
     
    134141  pool->unmarkWorkerBusy(address);
    135142  CPPUNIT_ASSERT( !pool->isWorkerBusy(address) );
     143  CPPUNIT_ASSERT( !pool->hasBusyWorkers() );
    136144  CPPUNIT_ASSERT_EQUAL( (size_t)1, pool->idle_queue.size() );
    137145  CPPUNIT_ASSERT_EQUAL( (size_t)0, pool->busy_queue.size() );
Note: See TracChangeset for help on using the changeset viewer.