-
Notifications
You must be signed in to change notification settings - Fork 7
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
Better Multithreading #1
Open
SeeSoftware
wants to merge
64
commits into
pack-png-mods:multithreaded
Choose a base branch
from
SeeSoftware:multithreaded
base: multithreaded
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 8 commits
Commits
Show all changes
64 commits
Select commit
Hold shift + click to select a range
37c73c8
Reverted last commit
33842ae
Removed multi-threading
70efe43
Removed multi-threading
5ef6afa
Better speed display
c3bdaf4
Multithreading
SeeSoftware e46949a
Update main.cu
SeeSoftware e3c51bb
Update main.cu
SeeSoftware 29cb2ee
Update main.cu
SeeSoftware 64b2a32
Update main.cu
SeeSoftware e49a7de
cleaning
SeeSoftware ab32d32
fix msvc defines
SeeSoftware a5b57b6
Update main.cu
SeeSoftware 4c97933
Fix memory leak by balint
hube12 7656af9
Removed unnecessary heap allocation
human-0 5515755
Window fix
hube12 0e4be93
Fix looping counter (bad size)
hube12 39d3f25
Merge pull request #2 from human-0/master
BalintCsala 393701d
Removed unneccessary delete[]
2f05ae7
Make nvcc shut up about printf wrong sizes
hube12 0b8b930
Unroll generateLeafPattern and only write 0, 4
riking d58ecd0
Remove pow2 check for random calls that are pow2
riking 84fd744
Write all leaf results but keep unrolled
riking 9a56170
Merge remote-tracking branch 'SeeSoftware/multithreaded' into mt-opt
riking 46859f5
Merge pull request #4 from riking/patch-2
BalintCsala 0843e79
Improve file write buffering
riking 6be3645
Use wall clock time for progress reports
riking d7617e2
Merge branch 'wall-clock' into mt-opt
riking 64e9469
fix compile for atomics
riking 124e85f
Merge branch 'mt-opt'
riking 4557a17
fixup to write buffer optimizations
riking b8756cb
Added uncheched mask for LCG modulo
human-0 9a22440
Removed extra calculations for ignored leaf results
human-0 d669226
Removed unnecessary leaf pattern generation
human-0 76bb4dd
Used lcg.combine to optimise skipping
human-0 7867d11
Merge pull request #6 from riking/wall-clock
hube12 165898d
Removed unecessary d
hube12 e48e71a
Create README.md
Earthcomputer 70d6bfc
Merge branch 'master' of https://github.com/human-0/seed-reversal-mer…
69218f6
Merge branch 'human-0-master'
525099c
Merged #7
b821d83
Merge branch 'riking-mt-opt-pr'
98be03a
Revert "Multithreading + file write optimizations"
BalintCsala e6c5a23
Merge pull request #11 from pack-png-mods/revert-7-mt-opt-pr
BalintCsala a7cb803
static fix
f6cbf75
Revert balint synchronous to async
hube12 f1bf36e
Removed multi-threading
95cdfe5
Basic multithreading
hube12 e91a955
Removed extra calculations for ignored leaf results
human-0 672dc5a
Added multithreading
8d4827a
Multithreading
SeeSoftware db6f77c
Update main.cu
SeeSoftware b01493b
Update main.cu
SeeSoftware 7d25308
Update main.cu
SeeSoftware 0b9c358
Update main.cu
SeeSoftware eedfa08
cleaning
SeeSoftware f1c3fab
fix msvc defines
SeeSoftware 2e0270e
Update main.cu
SeeSoftware 55b1800
Improve file write buffering
riking babbd16
fix compile for atomics
riking 7daf7be
fixup to write buffer optimizations
riking e55bb3c
Standardized
da00d60
lockfree thread loop
SeeSoftware e085773
Merge remote-tracking branch 'upstream/master' into multithreaded
SeeSoftware bbc13b6
lockfree thread loop
SeeSoftware File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ cmake-build-debug | |
*.txt | ||
merged | ||
*.out | ||
/build |
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
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.
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.
This looks like it's going to have a heck of a lot of mutex contention. Could the threads batch up their file writes?