-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a work stealing push/pull threading pool implementation
To make parallel tasks done we need a threading pool library. Unfortunately haven't found someone that would cut it, especially when the goal is to be competitive with rust's Rayon implementation. So this commit introduces a very fast threading pool that implements Rayon join semantics (but with joins being arbitrarily sized, not just 2). Signed-off-by: Pantelis Antoniou <[email protected]>
- Loading branch information
Showing
6 changed files
with
2,075 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ output/ | |
sphinx/ | ||
src/fy-tool | ||
src/libfyaml-parser | ||
src/fy-thread | ||
stamp-h1 | ||
tags | ||
TAGS | ||
|
This file contains 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
This file contains 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
Oops, something went wrong.