-
-
Notifications
You must be signed in to change notification settings - Fork 466
Adapt inclusive_scan to C++ 20 #5439
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
Conversation
96f5a90
to
6678856
Compare
6678856
to
591e991
Compare
libs/full/segmented_algorithms/include/hpx/parallel/segmented_algorithms/inclusive_scan.hpp
Outdated
Show resolved
Hide resolved
#if defined(HPX_GCC_VERSION) && HPX_GCC_VERSION >= 100000 | ||
#pragma GCC diagnostic push | ||
#pragma GCC diagnostic ignored "-Wdeprecated-declarations" | ||
#endif |
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.
We should move this (and the corresponding pop
below) into separate include files to reduce cluttering the code (place them here, for instance: https://github.com/STEllAR-GROUP/hpx/tree/master/libs/core/config/include/hpx/config). But that's something for a separate PR.
libs/parallelism/algorithms/include/hpx/parallel/algorithms/inclusive_scan.hpp
Outdated
Show resolved
Hide resolved
libs/parallelism/algorithms/include/hpx/parallel/algorithms/inclusive_scan.hpp
Show resolved
Hide resolved
libs/parallelism/algorithms/include/hpx/parallel/container_algorithms/inclusive_scan.hpp
Outdated
Show resolved
Hide resolved
f6e9f1c
to
fc23989
Compare
…ult, simplify concept expressions
fc23989
to
7346f71
Compare
Can one of the admins verify this patch? |
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.
LGTM, thanks!
Adapt inclusive_scan to C++ 20
Adapted inclusive_scan to C++ 20 and added container overloads. (range and sentinel). Added container tests. Seperated segmented overloads.
Any background context you want to provide?
Issue #4822
Issue #3646
Issue #1668
Issue #5156