]> git.somenet.org - pub/astra/parallel.git/blob - openmp/prefix/hillis.c
rewrote prefix sums (seqential, recursive and dataparallel) - now more modular and...
[pub/astra/parallel.git] / openmp / prefix / hillis.c
1 /*
2  * O(nlog n) work algorithm (Hillis-Steele)
3  */
4 #include "hillis.h"
5
6 void algorithm (numtype in[], unsigned long size, unsigned int ops[]) {
7         printf ("hillis. TODO\n");
8
9 }