-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Rvalue and constant ranges support for the tbb::parallel_sort algorithm #605
Merged
ivankochin
merged 14 commits into
master
from
dev/ivankochin/using-forwarding-for-parallel-sort-range
Oct 29, 2021
Merged
Rvalue and constant ranges support for the tbb::parallel_sort algorithm #605
ivankochin
merged 14 commits into
master
from
dev/ivankochin/using-forwarding-for-parallel-sort-range
Oct 29, 2021
Conversation
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
kboyarinov
reviewed
Oct 11, 2021
ivankochin
force-pushed
the
dev/ivankochin/using-forwarding-for-parallel-sort-range
branch
from
October 26, 2021 09:43
9c5b072
to
bbd7d81
Compare
kboyarinov
reviewed
Oct 27, 2021
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
…with scomparator with side effects Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
… size parameter Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
ivankochin
force-pushed
the
dev/ivankochin/using-forwarding-for-parallel-sort-range
branch
from
October 27, 2021 15:45
0149884
to
94527b7
Compare
Co-authored-by: kboyarinov <konstantin.boyarinov@intel.com>
kboyarinov
reviewed
Oct 28, 2021
Co-authored-by: kboyarinov <konstantin.boyarinov@intel.com>
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
Signed-off-by: Kochin Ivan <kochin.ivan@intel.com>
kboyarinov
reviewed
Oct 29, 2021
Co-authored-by: kboyarinov <konstantin.boyarinov@intel.com>
kboyarinov
approved these changes
Oct 29, 2021
ivankochin
deleted the
dev/ivankochin/using-forwarding-for-parallel-sort-range
branch
October 29, 2021 08:52
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.
Description
At that moment, the
tbb::parallel_sort
algorithm allows passing only non-constant lvalue reference to a range. But some ranges (like std::span) may provide access to data independent from the container state.Also, this patch contains a rework of the
parallel_sort
testing.Fixes #500
Type of change
Tests
Documentation
Breaks backward compatibility
Notify the following users
@kboyarinov