Added end to end implementation of OpMult with postSubmit calls on sequence
This commit is contained in:
parent
03688bc5b2
commit
8f6078c422
8 changed files with 62 additions and 8 deletions
|
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue