Added end to end implementation of OpMult with postSubmit calls on sequence

This commit is contained in:
Alejandro Saucedo 2020-08-22 12:08:18 +01:00
parent 03688bc5b2
commit 8f6078c422
8 changed files with 62 additions and 8 deletions

View file

@ -120,6 +120,11 @@ Sequence::eval()
this->end();
}
// TODO: Explore whether moving postSubmit calls to a separate sequence function that is explicitly called by the manager
for (size_t i = 0; i < this->mOperations.size(); i++) {
this->mOperations[i]->postSubmit();
}
SPDLOG_DEBUG("Kompute sequence EVAL success");
}