Skip to content
Snippets Groups Projects
Commit e7636ac3 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber Committed by Jakub Klinkovský
Browse files

Added link to paper by Guy Bleloch to tutorial on scan.

parent 8c2f2c26
No related branches found
No related tags found
1 merge request!105TO/matrices-adaptive-csr
...@@ -216,7 +216,7 @@ and exclusive prefix sum of the same sequence is ...@@ -216,7 +216,7 @@ and exclusive prefix sum of the same sequence is
[0,1,4,9,16,25,36] [0,1,4,9,16,25,36]
``` ```
Both kinds of [scan](https://en.wikipedia.org/wiki/Prefix_sum) are usually applied only on summation, however product or logical operations could be handy as well. In TNL, scan is implemented in similar way as reduction and uses the same functors as the reduction operation. The following example shows how it works: Both kinds of [scan](https://en.wikipedia.org/wiki/Prefix_sum) have many different [applications](https://www.cs.cmu.edu/~guyb/papers/Ble93.pdf) but they are usually applied only on summation, however product or logical operations could be handy as well. In TNL, prefix sum is implemented in similar way as reduction and so it can be easily modified by lambda functions. The following example shows how it works:
``` ```
inplaceInclusiveScan( array, 0, array.getSize(), TNL::Plus{} ); inplaceInclusiveScan( array, 0, array.getSize(), TNL::Plus{} );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment