-
Notifications
You must be signed in to change notification settings - Fork 117
Fix compile error in inclusive_scan
and exclusive_scan
over reverse iterators with different source iterator types
#2371
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
Merged
SergeyKopienko
merged 103 commits into
main
from
dev/skopienko/fix_iterators_comparison_V01
Aug 19, 2025
Merged
Fix compile error in inclusive_scan
and exclusive_scan
over reverse iterators with different source iterator types
#2371
SergeyKopienko
merged 103 commits into
main
from
dev/skopienko/fix_iterators_comparison_V01
Aug 19, 2025
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
9b2bb00
to
ed58f9c
Compare
ed58f9c
to
828248b
Compare
cfaabd7
to
f8bfd76
Compare
SergeyKopienko
commented
Aug 6, 2025
f8bfd76
to
a79429a
Compare
…s.cpp - remove empty test
…s.cpp - additional test case^ two iterators from the different containers
…s.cpp - remove test_is_iterator_type()
test/general/implementation_details/test_sycl_iterator_operations.pass.cpp
Show resolved
Hide resolved
rarutyun
reviewed
Aug 13, 2025
- to prevent the assertion from Microsoft STL implementation about the comparison of iterators from different containers
…quality_comparable_with - extract is_equality_comparable_with_impl
…ype_with_iterator_traits
danhoeflinger
previously approved these changes
Aug 14, 2025
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 LGTM now
…s.cpp - fix review comment: additional tests
4310358
to
24c92fe
Compare
danhoeflinger
approved these changes
Aug 19, 2025
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.
thanks for the testing changes. LGTM
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.
This PR fixes a compile error in oneDPL's
inclusive_scan
andexclusive_scan
operations when used with reverse iterators that have different source iterator types (issue #2296). The solution enhances iterator equality comparison by implementing sophisticated logic to unwrap base iterators (fromstd::reverse_iterator
only) and compare them instead of comparing adapter iterators directly.exclusive_scan