-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add taskflow #67
Add taskflow #67
Conversation
"make all" seems to succeed about 75% of the time, but the rest causes a seg-fault |
@@ -148,6 +156,10 @@ class Presolver { | |||
const Postsolver<bias_type, index_type, assignment_type>& postsolver() const; | |||
|
|||
private: | |||
tf::Taskflow taskflowOneTime_; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why break these into three rather than one big flow?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's mostly for a logical separation of the 3 different "types" of techniques. I'll do some more reading on the pros/cons and leave a note in the code either way.
…nto there; ie, the old-way no longer exists. Also, note that TF is currently still running serially
…t seems to be resolving the seg-faults I was seeing
…eption outside of the TF tasks
Splitting changes into distinct PRs |
No description provided.