Changeset f0dea0 for src


Ignore:
Timestamp:
May 18, 2016, 9:55:42 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, 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_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, 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:
7debff
Parents:
9ff818
git-author:
Frederik Heber <heber@…> (03/03/16 18:12:03)
git-committer:
Frederik Heber <heber@…> (05/18/16 21:55:42)
Message:

FragmentationAutomationAction checks FragmentResults for non-zero exit status.

  • action fails in this case and the respective job is listed with reached and required precision.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/FragmentationAction/FragmentationAutomationAction.cpp

    r9ff818 rf0dea0  
    114114}
    115115
     116template <class ResultClass>
     117std::pair<double, double> getResiduals(const ResultClass &_result)
     118{ return std::pair<double, double>(0.,0.); }
     119
     120std::pair<double, double> getResiduals(const MPQCData &_result)
     121{ return std::make_pair(_result.accuracy, _result.desired_accuracy); }
     122
     123std::pair<double, double> getResiduals(const VMGData &_result)
     124{ return std::make_pair(_result.relative_residual, _result.precision); }
     125
     126template <class ResultClass>
     127bool checkResults(const typename std::map<JobId_t, ResultClass> &_results)
     128{
     129  bool result = true;
     130  for (typename std::map<JobId_t, ResultClass>::const_iterator iter = _results.begin();
     131      iter != _results.end(); ++iter) {
     132    std::pair<double, double> residuals = getResiduals(iter->second);
     133    if (residuals.second != 0.) {
     134      if (residuals.first >= residuals.second) {
     135        ELOG(1, "Fragment Job " << iter->first << " converged to " << residuals.first
     136            << " instead of " << residuals.second);
     137        result = false;
     138      }
     139    } else {
     140      LOG(4, "DEBUG: Not checking accuracy because desired precision not given.");
     141    }
     142  }
     143  return result;
     144}
     145
    116146ActionState::ptr FragmentationFragmentationAutomationAction::performCall() {
    117147  boost::asio::io_service io_service;
     
    165195
    166196    mpqccontroller.getResults(shortrangedata);
    167     if (mpqccontroller.getExitflag() != 0)
    168       return Action::failure;
     197    if (!checkResults(shortrangedata)) {
     198      ELOG(1, "At least one of the fragments' energy could not be properly minimized.");
     199      return Action::failure;
     200    }
     201    if (mpqccontroller.getExitflag() != 0) {
     202      ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag.");
     203      return Action::failure;
     204    }
    169205
    170206    Exitflag += mpqccontroller.getExitflag();
     
    196232    mpqccontroller.run();
    197233    stop();
    198     if (mpqccontroller.getExitflag() != 0)
    199       return Action::failure;
     234    if (mpqccontroller.getExitflag() != 0) {
     235      ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag before getting results.");
     236      return Action::failure;
     237    }
    200238
    201239    // get back the results and place them in shortrangedata
     
    204242        "FragmentationFragmentationAutomationAction::performCall() - number of converted results "
    205243        +toString(shortrangedata.size())+" and number of jobs "+toString(NumberJobs)+ " differ.");
    206     if (mpqccontroller.getExitflag() != 0)
    207       return Action::failure;
     244    if (!checkResults(shortrangedata)) {
     245      ELOG(1, "At least one of the fragments' energy could not be properly minimized.");
     246      return Action::failure;
     247    }
     248    if (mpqccontroller.getExitflag() != 0) {
     249      ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag after getting results.");
     250      return Action::failure;
     251    }
    208252
    209253    Exitflag += mpqccontroller.getExitflag();
     
    245289    const size_t NoJobs = shortrangedata.size()+full_sample.size();
    246290    vmgcontroller.requestIds(2*NoJobs);
    247     if (vmgcontroller.getExitflag() != 0)
    248       return Action::failure;
     291    if (vmgcontroller.getExitflag() != 0) {
     292      ELOG(1, "VMGFragmentController returned non-zero exit flag on requesting long-range ids.");
     293      return Action::failure;
     294    }
    249295
    250296    // Phase Five a: create VMGJobs for electronic charge distribution
     
    269315    // Phase Six a: calculate result
    270316    vmgcontroller.waitforResults(NoJobs);
    271     if (vmgcontroller.getExitflag() != 0)
    272       return Action::failure;
     317    if (vmgcontroller.getExitflag() != 0) {
     318      ELOG(1, "VMGFragmentController returned non-zero exit flag before getting results.");
     319      return Action::failure;
     320    }
    273321    vmgcontroller.getResults(longrangedata);
    274322    ASSERT( NoJobs == longrangedata.size(),
     
    276324        +toString(full_sample.size())+"="+toString(NoJobs)
    277325        +" and first VMGresults "+toString(longrangedata.size())+" don't match.");
     326    if (!checkResults(longrangedata)) {
     327      ELOG(1, "At least one of the fragments' electronic long-range potential could not be properly minimized.");
     328      return Action::failure;
     329    }
    278330    Exitflag += vmgcontroller.getExitflag();
    279331
     
    308360          +toString(full_sample.size())+"="+toString(NoJobs)
    309361          +" and second VMGresults "+toString(longrangedata_both.size())+" don't match.");
    310       if (vmgcontroller.getExitflag() != 0)
     362      if (!checkResults(longrangedata_both)) {
     363        ELOG(1, "At least one of the fragments' nuclei long-range potential could not be properly minimized.");
    311364        return Action::failure;
     365      }
     366      if (vmgcontroller.getExitflag() != 0) {
     367        ELOG(1, "VMGFragmentController returned non-zero exit flag after getting results.");
     368        return Action::failure;
     369      }
    312370      Exitflag += vmgcontroller.getExitflag();
    313371
Note: See TracChangeset for help on using the changeset viewer.