You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our parallel algorithms support being used with the datapar execution policy. This is a remnant of an older standardization proposal. This implementation is currently tightly entangled with the implementation of the parallel base algorithms.
We should do two things:
separate the datapar implementations and expose them through separate algorithm specializations (based on the tag_invoke customization point mechanism we have implemented)
adapt the implementation to support (and rely on) the data-parallel Types introduced by N4755, section 9, this implies removing datapar as it is today,
Currently, our parallel algorithms support being used with the
datapar
execution policy. This is a remnant of an older standardization proposal. This implementation is currently tightly entangled with the implementation of the parallel base algorithms.We should do two things:
tag_invoke
customization point mechanism we have implemented)datapar
as it is today,This work could also go hand-in-hand with #2271.
The text was updated successfully, but these errors were encountered: