Skip to content
Snippets Groups Projects
Commit 79cfffe3 authored by Ruud Overeem's avatar Ruud Overeem
Browse files

BugID: 826

Bugfix. 'complete'-criteria for starting up many MPI processes was wrong.
parent 354acaf7
No related branches found
No related tags found
No related merge requests found
...@@ -691,7 +691,8 @@ void ApplController::checkAckCompletion() ...@@ -691,7 +691,8 @@ void ApplController::checkAckCompletion()
LOG_TRACE_STAT("All ack's received?"); LOG_TRACE_STAT("All ack's received?");
if (itsCurState == StateStartupAppl) { if (itsCurState == StateStartupAppl) {
if (itsAPAPool->onlineCount() == itsProcRuler.size()) { // if (itsAPAPool->onlineCount() == itsProcRuler.size()) {
if (itsAPAPool->onlineCount() == itsAPAPool->processCount()) {
itsStateEngine->ready(); itsStateEngine->ready();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment