-
Notifications
You must be signed in to change notification settings - Fork 117
Serial range-based set algorithms with limited outputs #2422
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
Draft
dmitriy-sobolev
wants to merge
276
commits into
main
Choose a base branch
from
dev/dmitriy-sobolev/serial-set
base: main
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.
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
…n error in __pattern_set_union + __hetero_tag - when we calculate the difference {2} \ {1} we should use projections pack with reverted order of projections
…n error in __pattern_set_symmetric_difference + __hetero_tag - when we calculate the difference {2} \ {1} we should use projections pack with reverted order of projections
…) - it may be used only in the case if projections are the same
…m __pattern_set_union
…tern_set_difference / __ranges::__brick_set_difference
…tern_set_symmetric_difference / __ranges::__brick_set_symmetric_difference
…tern_set_intersection / __ranges::__brick_set_intersection
…e duplicated line
…tern_includes / __ranges::__brick_includes
…ters order in __pattern_for_each
This reverts commit 3a49e02.
…_fwd, __binary_op::call_arg_dir_rew
…r_fwd, __binary_op_caller_arg_dir_rew
…n_scan.h - pass projection into __biased_lower_bound
…n_scan.h - pass projection into __pstl_upper_bound
…ection into __pstl_lower_bound
…n_scan.h - remove __proj_comp and __proj_comp_reversed as not used anymore
…lass __brick_set_op : now we aren't using struct __binary_op inside
…le error in __pstl_lower_bound call : forgot to pass comparator
… range-algorithm returns boolean type (std::ranges::includes)
Signed-off-by: Dan Hoeflinger <[email protected]>
Signed-off-by: Dan Hoeflinger <[email protected]>
Signed-off-by: Dan Hoeflinger <[email protected]>
Signed-off-by: Dan Hoeflinger <[email protected]>
Signed-off-by: Dan Hoeflinger <[email protected]>
Signed-off-by: Dan Hoeflinger <[email protected]>
parallel_backend_sycl_reduce_then_scan.h(773,41): pameter '_Index' ('unsigned long long' vs. '_SizeType' (aka 'long long'))
Signed-off-by: Dan Hoeflinger <[email protected]>
This reverts commit 84b7d30.
…_algo_L2_set-origin_UXL # Conflicts: # include/oneapi/dpl/pstl/hetero/dpcpp/parallel_backend_sycl_reduce_then_scan.h
…itriy-sobolev/serial-set # Conflicts: # include/oneapi/dpl/pstl/hetero/dpcpp/parallel_backend_sycl_reduce_then_scan.h
…pe for __n2 in __parallel_set_op + __parallel_tag
…ore namespace oneapi
…itriy-sobolev/serial-set
…itriy-sobolev/serial-set
…itriy-sobolev/serial-set
Base automatically changed from
dev/mdvorski/ranges_algo_L2_set-origin_UXL
to
main
September 15, 2025 18:41
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.
These algorithms should replace the ones we use from the standard libraries, because they expect unlimited output sequence, which is not aligned with the API of the algorithms with the execution policies from C++26.
Draft, until all set algorithms are implemented together with the tests