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
Improve the performance of inclusive_scan() and exclusive_scan(). Scan multiple values per thread. This will also improve the performance of partial_sum().
The text was updated successfully, but these errors were encountered:
I will give a look at this week, as far as I remember a quite efficient scan can be done in 3 distinct steps : Up-Sweep, Down-Sweep and then compute the final result ( or something like that).
Improve the performance of
inclusive_scan()
andexclusive_scan()
. Scan multiple values per thread. This will also improve the performance ofpartial_sum()
.The text was updated successfully, but these errors were encountered: