-
Notifications
You must be signed in to change notification settings - Fork 2
Multithreading for State Building #18
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
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…r needs to be refactored
Add badges to multithreading
…a-cplusplus into multithreading
Collaborator
Author
|
Need to fix issue #28 |
Collaborator
Author
|
See issue #29 |
Collaborator
Author
|
Issue #29 fixed now |
…o ExplorationThread.cpp
…plorationThread from IterativeExplorationThread
Collaborator
Author
|
Edited status of PR to note that it compiles now, but doesn't yet work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
THIS PR IS A DRAFT! DO NOT MERGE IT YET!
This pull request includes commits to add multithreading to STAMINA's model builders, creating several classes within a new
stamina::builder::threadsnamespace. These classes include:stamina::builder::threads::BaseThread: a thread base-class which creates an killable thread allowing for idling and termination.stamina::builder::threads::ControlThread: A book-keeping thread which exploration threads can request ownership of states from and keeps track of those ownerships.stamina::builder::threads::ExplorationThread: A thread which explores states which it owns.Additionally, this PR creates the
stamina::corenamespace whereStaminaModelBuilderand other related classes can live. Now, the only classes in the mainstaminanamespace are as follows:stamina::Staminastamina::struct ArgumentsSTATUS: Compiles but segfaults when multithreading protocol is used. Executable still supports iterative and re-exploring methods.