-
Notifications
You must be signed in to change notification settings - Fork 13
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 a hybrid example related to threads #94
Conversation
for (size_t i = 0; i < pow(10, 6); ++i) | ||
{ | ||
}; | ||
curr_t_info->ddc_out = read_ddc(); |
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.
Can we add an assert(curr_t_info->ddc_out == curr_t_info->addr_in)
or similar here?
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.
Done in 66126d7. Also added a check to ensure the DDC is changed.
Please squash. |
Squashed. |
I've made a bit of an ugly fix in 42f7b6c, but I think a proper fix would involve a bit too much infrastructure changing (at least I can't think of any other more straightforward one to only add the libraries we need to the new test). |
I think this is perfectly fine for this repo. Please squash. |
Squashed. |
Is it fine to force-push to get the changes from #95 ? |
Please force push a rebase. |
Check whether we can set DDCs for spawned threads individually, and independent from the main program thread.
Rebased in e962618 (also fixed |
Check whether we can set DDCs for spawned threads individually, and independent from the main program thread.