-
Notifications
You must be signed in to change notification settings - Fork 175
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
Multi threading #201
Open
ss3git
wants to merge
18
commits into
libsndfile:master
Choose a base branch
from
ss3git:MultiThreading
base: master
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
Multi threading #201
Changes from 11 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
516b1b4
libsamplerate multi-thread (OpenMP) implementation
ss3git df1aaae
MT disable by default.
ss3git 8c0f676
error handlings and small refactor
ss3git 2799ec3
some more optimize
ss3git 797a807
correct indentation
ss3git 9c9959d
- Windows (MSVC) support
ss3git 7c3ec94
ensure the number of threads actually used by omp to have the barrier…
ss3git 58c7d5f
change threading strategy because overhead of allocating extra work b…
ss3git 9bce93e
allow odd numbers of threads
ss3git 6d3132a
format style
ss3git 99d4396
fix for debug build
ss3git 7348582
change WIN32 to MSVC for openmp build option switch
ss3git bd6aec3
cache once-calculated coeffs if src_ratio is integer
ss3git 0738d4d
fix type and clarify zero
ss3git 1c01a77
unnecessary (wrongly merged) cast removal
ss3git 6d4abeb
change _WIN32 to _MSC_VER
ss3git c0aa879
loop termination condition fix
ss3git d509240
undo loop termination condition fix, and make the decision equivalent…
ss3git 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
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.
Oops, something went wrong.
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.
I guess we need to check
MSVC
variable. MinGW compiler probably will fail.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.
commit: 7348582