#include #include "skepu/vector.h" #include "skepu/matrix.h" #include "skepu/reduce.h" using namespace std; // definition of functions to be used in the map and reduce UNARY_FUNC(inc, int, a, return(a+1); ) UNARY_FUNC(dec, int, a, return(a-1); ) UNARY_FUNC(sq, int, a, return(a*a); ) BINARY_FUNC(add, int, a, b, return(a+b); ) BINARY_FUNC(sub, int, a, b, return(a-b); ) BINARY_FUNC(mul, int, a, b, return(a*b); ) BINARY_FUNC(div, int, a, b, return(a/b); ) #define N 4 int main() { // declare vectors skepu::Vector v0(N); skepu::Matrix m(N,N); // initialize the vector(s) to some meaningful value for(int i=0; i reduceadd(new add); int i = reduceadd(v0); cout << "After reduceadd : " << i << endl; skepu::Reduce reduceaddmat(new add); i = reduceaddmat(m); cout << "After reduceaddmat : " << i << endl; return 0; }