#include <matrix_skeletons.h>
Static Public Member Functions | |
static int | setDistributionPolicy (int p) |
Set the distribution policy. | |
static int | getDistributionPolicy () |
Return the distribution policy. | |
static void | calcDivision (int &r, int &c, const SKEL_MPI_INTRACOMM &com) |
Calculate divisions (r, c) according to the policy. | |
template<typename A, typename F> | |
static void | map_i (const F &f, dist_matrix< A > *mat) |
The map skeleton (inplace). | |
template<typename B, typename A, typename F> | |
static void | map (const F &f, const dist_matrix< A > *mat, dist_matrix< B > *dmb) |
The map skeleton. | |
template<typename A, typename F> | |
static dist_matrix< typename F::result_type > * | map (const F &f, const dist_matrix< A > *mat) |
The map skeleton(crates a new matrix). | |
template<typename C, typename A, typename B, typename F> | |
static void | zipwith (const F &f, const dist_matrix< A > *dma, const dist_matrix< B > *dmb, dist_matrix< C > *dmc) |
The zipwith skeleton(crates a new matrix). | |
template<typename A, typename B, typename F> | |
static dist_matrix< typename F::result_type > * | zipwith (const F &f, const dist_matrix< A > *dma, const dist_matrix< B > *dmb) |
The zipwith skeleton(creates a new matrix). | |
template<typename A, typename B> | |
static dist_matrix< std::pair< A, B > > * | zip (const dist_matrix< A > *dma, const dist_matrix< B > *dmb) |
The zip skeleton which is a specialization of zipwith. | |
template<typename A, typename F, typename G> | |
static void | reduceB (const F &oplus, const G &otimes, const dist_matrix< A > *mat, A *res) |
The reduce with broadcast. | |
template<typename A, typename F, typename G> | |
static A * | reduceB (const F &oplus, const G &otimes, const dist_matrix< A > *mat) |
The reduce with broadcast. | |
template<typename A, typename F, typename G> | |
static void | reduce (const F &oplus, const G &otimes, const dist_matrix< A > *mat, A *res) |
The reduce skeleton. | |
template<typename A, typename F, typename G> | |
static A * | reduce (const F &oplus, const G &otimes, const dist_matrix< A > *mat) |
The reduce skeleton (create new value). | |
template<typename A, typename F, typename G> | |
static void | reduceDC (const F &oplus, const G &otimes, const dist_matrix< A > *mat, A *res) |
The reduce skeleton(with divide and conquer local computation). | |
template<typename A, typename F, typename G> | |
static A * | reduceDC (const F &oplus, const G &otimes, const dist_matrix< A > *mat) |
The reduce skeleton (create new value, with divide and conquer local computation). | |
template<typename A, typename F, typename G> | |
static void | reduceDCN (const F &oplus, const G &otimes, const dist_matrix< A > *mat, A *res) |
The reduce skeleton(with divide and conquer local computation, nested parallelism). | |
template<typename A, typename F, typename G> | |
static A * | reduceDCN (const F &oplus, const G &otimes, const dist_matrix< A > *mat) |
The reduce skeleton (create new value, with divide and conquer local computation, nested parallelism). | |
template<typename A, typename F, typename G> | |
static void | reduceDCN2 (const F &oplus, const G &otimes, const dist_matrix< A > *mat, A *res) |
The reduce skeleton(with divide and conquer local computation, nested parallelism, broadcasting operands for each operator). | |
template<typename A, typename F, typename G> | |
static A * | reduceDCN2 (const F &oplus, const G &otimes, const dist_matrix< A > *mat) |
The reduce skeleton (create new value, with divide and conquer local computation, nested parallelism, broadcasting operands for each operator). | |
template<typename A, typename F, typename G, typename H> | |
static void | cata (const F &oplus, const G &otimes, const H &f, const dist_matrix< A > *mat, typename H::result_type *res) |
The cata skeleton. | |
template<typename A, typename F, typename G, typename H> | |
static H::result_type * | cata (const F &oplus, const G &otimes, const H &f, const dist_matrix< A > *mat) |
The cata skeleton (create new value). | |
template<typename A, typename F, typename G, typename H> | |
static void | cataDCN2 (const F &oplus, const G &otimes, const H &f, const dist_matrix< A > *mat, typename H::result_type *res) |
The cata skeleton(with divide and conquer local computation, nested parallelism, broadcasting operands for each operator). | |
template<typename A, typename F, typename G, typename H> | |
static H::result_type * | cataDCN2 (const F &oplus, const G &otimes, const H &f, const dist_matrix< A > *mat) |
The cata skeleton (create new value, with divide and conquer local computation, nested parallelism, broadcasting operands for each operator). | |
template<typename A, typename F, typename G> | |
static void | scan (const F &oplus, const G &otimes, const dist_matrix< A > *dma, dist_matrix< A > *dmb) |
The scan skeleton. | |
template<typename A, typename F, typename G> | |
static dist_matrix< A > * | scan (const F &oplus, const G &otimes, const dist_matrix< A > *dma) |
The scan skeleton. | |
template<typename A, typename F, typename G> | |
static void | scanr (const F &oplus, const G &otimes, const dist_matrix< A > *dma, dist_matrix< A > *dmb) |
The reverse-scan skeleton. | |
template<typename A, typename F, typename G> | |
static dist_matrix< A > * | scanr (const F &oplus, const G &otimes, const dist_matrix< A > *dma) |
The reverse-scan skeleton. | |
template<typename A> | |
static dist_matrix< matrix< A > > * | all_rows (const dist_matrix< A > *mat) |
A specialization of allreduce_row: all_rows. | |
template<typename A> | |
static dist_matrix< matrix< A > > * | all_cols (const dist_matrix< A > *mat) |
A specialization of allreduce_col: all_cols. | |
template<typename A, typename F> | |
static dist_matrix< A > * | allreduce_row (const F &otimes, const dist_matrix< A > *mat) |
A specialization of reduce: allreduce_row. | |
template<typename A, typename F> | |
static dist_matrix< A > * | allreduce_col (const F &oplus, const dist_matrix< A > *mat) |
A specialization of reduce: allreduce_col. | |
template<typename A, typename OP2, typename OT2, typename P, typename OP, typename OT, typename Q> | |
static void | acc (const OP2 &oplus2, const OT2 &otimes2, const P &p, const OP &oplus, const OT &otimes, const Q &q, const dist_matrix< A > *dma, typename P::result_type *res) |
template<typename A, typename OP2, typename OT2, typename P, typename OP, typename OT, typename Q> | |
static P::result_type * | acc (const OP2 &oplus2, const OT2 &otimes2, const P &p, const OP &oplus, const OT &otimes, const Q &q, const dist_matrix< A > *dma) |
template<typename A, typename F, typename G> | |
static void | scan2 (const F &oplus, const G &otimes, const dist_matrix< A > *dma, dist_matrix< A > *dmb) |
template<typename A, typename F, typename G> | |
static dist_matrix< A > * | scan2 (const F &oplus, const G &otimes, const dist_matrix< A > *dma) |
template<typename A> | |
static void | rotateRowsConst (int s, dist_matrix< A > *mat) |
Rotate row-blocks by s. | |
template<typename A, typename F> | |
static void | rotateRows (const F &f, dist_matrix< A > *mat) |
Rotate row-blocks by f(col-position). | |
template<typename A> | |
static void | rotateColsConst (int s, dist_matrix< A > *mat) |
Rotate column-blocks by s. | |
template<typename A, typename F> | |
static void | rotateCols (const F &f, dist_matrix< A > *mat) |
Rotate column-blocks by f(row-position). | |
Static Public Attributes | |
static int | distributionPolicy = matrix_skeletons::DPOLICY_RECTANGLE |
Policy of implicit distribution by constructors. | |
static const int | DPOLICY_RECTANGLE = 0 |
Distribute policy RECTANGLE. Using all processors to distribute the matrix. Distributed matrix can be seen as a (r, c) matrix of matrices. r*c = processors, where r is division in row-direction, and c is division in column-direction. | |
static const int | DPOLICY_SQUARE = 1 |
Distribute policy SQUARE. The matrix is distributed symmetrically in row- and column-direction. Distributed matrix can be seen as a (r, r) square matrix of matrices. r*r =< processors, where r is division in each-direction and (r+1) * (r+1) > processors. | |
static const int | DPOLICY_ROW = 2 |
Distribute policy ROW. The matrix is distributed in row-direction. Distributed matrix can be seen as a (r, 1) matrix (vector) of matrices. r = processors, where r is division in row-direction. | |
static const int | DPOLICY_COLUMN = 3 |
Distribute policy COLUMN. The matrix is distributed in column-direction. Distributed matrix can be seen as a (1, c) matrix (vector) of matrices. c = processors, where c is division in column-direction. | |
Classes | |
class | Mkpair |
A function object making a pair (fst, snd). |
This implementation is parallel, distributed.
Definition at line 70 of file matrix_skeletons.h.
|
|
|
accumulate skeleton prototypes |
|
A specialization of allreduce_col: all_cols. Resulting matrix consists of columns of the matrix mat. i.e. each element in a col of the matrix is corresponding col of this matrix. Definition (in Haskell) allcols :: Matrix a -> Matrix (Matrix a) allcols = allreduce_col (Abv) . map Sing
Sample: m2 = allcols m1 m2 = matrix_skeletons::allcols( m1 );
|
|
A specialization of allreduce_row: all_rows. Resulting matrix consists of rows of the matrix mat. i.e. each element in a row of the matrix is corresponding row of this matrix. Definition (in Haskell) allrows :: Matrix a -> Matrix (Matrix a) allrows = allreduce_row (Bsd) . map Sing
Sample: m2 = allrows m1 m2 = matrix_skeletons::allrows( m1 );
|
|
A specialization of reduce: allreduce_col. This reduces the matrix in column-direction only and broadcasts the result in each column. So almost all elements are shadows of first row. Please be careful with modifing the elements. Definition (in Haskell) allreduce_col :: (a -> a -> a) -> Matrix a -> Matrix a allreduce_col oplus = scanr (rr, ll) . scan (oplus, rr) where ll a b = a rr a b = b
Sample: m2 = allreduce_col (+) m1 m2 = matrix_skeletons::allreduce_col( Add(), m1 );
|
|
A specialization of reduce: allreduce_row. This reduces the matrix in row-direction only and broadcasts the result in each row. So almost all elements are shadows of first column. Please be careful with modifing the elements. Definition (in Haskell) allreduce_row :: (a -> a -> a) -> Matrix a -> Matrix a allreduce_row otimes = scanr (ll, rr) . scan (rr, otimes) where ll a b = a rr a b = b
Sample: m2 = allreduce_row (+) m1 m2 = matrix_skeletons::allreduce_row( Add(), m1 );
|
|
Calculate divisions (r, c) according to the policy.
Definition at line 98 of file sketo.cpp. References distributionPolicy, DPOLICY_COLUMN, DPOLICY_RECTANGLE, DPOLICY_ROW, DPOLICY_SQUARE, and SKEL_MPI_Comm_size. |
|
The cata skeleton (create new value). This skeleton reduces the matrix into a value with two binary operators after applying a function to each element. Definition (in Haskell) cata :: (a->a->a, a->a->a, b->a) -> Matrix b -> a cata (oplus, otimes, f) (Sing a) = f a cata (oplus, otimes, f) (Abv x y) = oplus ( cata (oplus, otimes, f) x) ( cata (oplus, otimes, f) y) cata (oplus, otimes, f) (Bsd x y) = otimes ( cata (oplus, otimes, f) x) ( cata (oplus, otimes, f) y)
Sample: r = cata ((+), (+), square) m r = matrix_skeletons::cata( Add(), Add(), Square(), m); The matrices must be row-wise.
|
|
The cata skeleton. This skeleton reduces the matrix into a value with two binary operators after applying a function to each element. The matrices must be row-wise.
|
|
The cata skeleton (create new value, with divide and conquer local computation, nested parallelism, broadcasting operands for each operator). This skeleton reduces the matrix into a value with two binary operators after applying a function to each element. Definition (in Haskell) cata :: (a->a->a, a->a->a, b->a) -> Matrix b -> a cata (oplus, otimes, f) (Sing a) = f a cata (oplus, otimes, f) (Abv x y) = oplus ( cata (oplus, otimes, f) x) ( cata (oplus, otimes, f) y) cata (oplus, otimes, f) (Bsd x y) = otimes ( cata (oplus, otimes, f) x) ( cata (oplus, otimes, f) y)
Sample: r = cata ((+), (+), square) m r = matrix_skeletons::cata( Add(), Add(), Square(), m); The matrices must be row-wise.
|
|
The cata skeleton(with divide and conquer local computation, nested parallelism, broadcasting operands for each operator). This skeleton reduces the matrix into a value with two binary operators after applying a function to each element. The matrices must be row-wise.
|
|
Return the distribution policy.
Definition at line 145 of file sketo.cpp. References distributionPolicy. |
|
The map skeleton(crates a new matrix). This function applies the function to each element of the matrix. Definition (in Haskell) map :: (a -> b) -> Matrix a -> Matrix b map f (Sing a) = Sing (f a) map f (Abv x y) = Abv (map f x) (map f y) map f (Bsd x y) = Bsd (map f x) (map f y)
Sample: m2 = map f m1 m2 = matrix_skeletons::map( f, m1 );
|
|
The map skeleton. This function applies the function to each element of the matrix.
|
|
The map skeleton (inplace). This function applies the function to each element of the matrix.
|
|
The reduce skeleton (create new value). This skeleton reduces the matrix into a value with two binary operators. Definition (in Haskell) reduce :: (a->a->a, a->a->a) -> Matrix a -> a reduce (oplus, otimes) (Sing a) = a reduce (oplus, otimes) (Abv x y) = oplus ( reduce (oplus, otimes) x) ( reduce (oplus, otimes) y) reduce (oplus, otimes) (Bsd x y) = otimes ( reduce (oplus, otimes) x) ( reduce (oplus, otimes) y)
Sample: r = reduce ((+), (+)) m r = matrix_skeletons::reduce( Add(), Add(), m); The matrices must be row-wise.
|
|
The reduce skeleton. This skeleton reduces the matrix into a value with two binary operators. The matrices must be row-wise.
|
|
The reduce with broadcast. Broadcasting after reduction.
|
|
The reduce with broadcast. Broadcasting after reduction.
|
|
The reduce skeleton (create new value, with divide and conquer local computation). This skeleton reduces the matrix into a value with two binary operators. Definition (in Haskell) reduce :: (a->a->a, a->a->a) -> Matrix a -> a reduce (oplus, otimes) (Sing a) = a reduce (oplus, otimes) (Abv x y) = oplus ( reduce (oplus, otimes) x) ( reduce (oplus, otimes) y) reduce (oplus, otimes) (Bsd x y) = otimes ( reduce (oplus, otimes) x) ( reduce (oplus, otimes) y)
Sample: r = reduce ((+), (+)) m r = matrix_skeletons::reduce( Add(), Add(), m); The matrices must be row-wise.
|
|
The reduce skeleton(with divide and conquer local computation). This skeleton reduces the matrix into a value with two binary operators. The matrices must be row-wise.
|
|
The reduce skeleton (create new value, with divide and conquer local computation, nested parallelism). This skeleton reduces the matrix into a value with two binary operators. Definition (in Haskell) reduce :: (a->a->a, a->a->a) -> Matrix a -> a reduce (oplus, otimes) (Sing a) = a reduce (oplus, otimes) (Abv x y) = oplus ( reduce (oplus, otimes) x) ( reduce (oplus, otimes) y) reduce (oplus, otimes) (Bsd x y) = otimes ( reduce (oplus, otimes) x) ( reduce (oplus, otimes) y)
Sample: r = reduce ((+), (+)) m r = matrix_skeletons::reduce( Add(), Add(), m); The matrices must be row-wise.
|
|
The reduce skeleton(with divide and conquer local computation, nested parallelism). This skeleton reduces the matrix into a value with two binary operators. The matrices must be row-wise.
|
|
The reduce skeleton (create new value, with divide and conquer local computation, nested parallelism, broadcasting operands for each operator). This skeleton reduces the matrix into a value with two binary operators. Definition (in Haskell) reduce :: (a->a->a, a->a->a) -> Matrix a -> a reduce (oplus, otimes) (Sing a) = a reduce (oplus, otimes) (Abv x y) = oplus ( reduce (oplus, otimes) x) ( reduce (oplus, otimes) y) reduce (oplus, otimes) (Bsd x y) = otimes ( reduce (oplus, otimes) x) ( reduce (oplus, otimes) y)
Sample: r = reduce ((+), (+)) m r = matrix_skeletons::reduce( Add(), Add(), m); The matrices must be row-wise.
|
|
The reduce skeleton(with divide and conquer local computation, nested parallelism, broadcasting operands for each operator). This skeleton reduces the matrix into a value with two binary operators. The matrices must be row-wise.
|
|
Rotate column-blocks by f(row-position).
|
|
Rotate column-blocks by s.
|
|
Rotate row-blocks by f(col-position).
|
|
Rotate row-blocks by s.
|
|
The scan skeleton. This skeleton stores every process of reduction of a matrix into a value with two binary operators. The matrices must be row-wise. Definition (in Haskell) scan :: (a->a->a, a->a->a) -> Matrix a -> Matrix a scan (oplus, otimes) (Sing a) = (Sing a) scan (oplus, otimes) (Abv x y) = oplus' ( scan (oplus, otimes) x) ( scan (oplus, otimes) y) where oplus' sx sy = Abv sx sy' where sy' = mapr (zipwith oplus (bottom sx)) sy scan (oplus, otimes) (Bsd x y) = otimes' ( scan (oplus, otimes) x) ( scan (oplus, otimes) y) where otimes' sx sy = Bsd sx sy' where sy' = mapc (zipwith otimes (right sx)) sy
Sample: m2 = scan ((+), (+)) m1 m2 = matrix_skeletons::scan( Add(), Add(), m1);
|
|
The scan skeleton. This skeleton stores every process of reduction of a matrix into a value with two binary operators. The matrices must be row-wise.
|
|
|
|
|
|
The reverse-scan skeleton. This skeleton stores every process of reverse reduction of a matrix into a value with two binary operators. The matrices must be row-wise. Definition (in Haskell) scanr :: (a->a->a, a->a->a) -> Matrix a -> Matrix a scanr (oplus, otimes) = rev . scan (binrev oplus, binrev otimes) . rev where rev = reduce (binrev Abv, binrev Bsd) . map Sing binrev f a b = f b a
Sample: m2 = scanr ((+), (+)) m1 m2 = matrix_skeletons::scanr( Add(), Add(), m1);
|
|
The reverse-scan skeleton. This skeleton stores every process of reverse reduction of a matrix into a value with two binary operators. The matrices must be row-wise.
|
|
Set the distribution policy.
Definition at line 137 of file sketo.cpp. References distributionPolicy. |
|
The zip skeleton which is a specialization of zipwith. Definition (in Haskell)
|
|
The zipwith skeleton(creates a new matrix). This function applies the function to the pair of corresponding elements of the matrices. Definition (in Haskell) zipwith :: (a->b->c) -> Matrix a -> Matrix b -> Matrix c zipwith f (Sing a) (Sing b) = Sing (f a b) zipwith f (Abv x y) (Abv u v) = Abv (zipwith f x u) (zipwith f y v) zipwith f (Bsd x y) (Bsd u v) = Bsd (zipwith f x u) (zipwith f y v)
Sample: m3 = zipwith f m1 m2 m3 = matrix_skeletons::zipwith( f, m1, m2 );
|
|
The zipwith skeleton(crates a new matrix). This function applies the function to the pair of corresponding elements of the matrices.
|
|
Policy of implicit distribution by constructors. This policy is used when user uses constructors without specifying distribution (the number of division of the matrix) explicitly. Default policy is DPOLICY_RECTANGLE.
Definition at line 84 of file matrix_skeletons.h. Referenced by calcDivision(), getDistributionPolicy(), and setDistributionPolicy(). |
|
Distribute policy COLUMN. The matrix is distributed in column-direction. Distributed matrix can be seen as a (1, c) matrix (vector) of matrices. c = processors, where c is division in column-direction.
Definition at line 118 of file matrix_skeletons.h. Referenced by calcDivision(). |
|
Distribute policy RECTANGLE. Using all processors to distribute the matrix. Distributed matrix can be seen as a (r, c) matrix of matrices. r*c = processors, where r is division in row-direction, and c is division in column-direction.
Definition at line 93 of file matrix_skeletons.h. Referenced by calcDivision(). |
|
Distribute policy ROW. The matrix is distributed in row-direction. Distributed matrix can be seen as a (r, 1) matrix (vector) of matrices. r = processors, where r is division in row-direction.
Definition at line 110 of file matrix_skeletons.h. Referenced by calcDivision(). |
|
Distribute policy SQUARE. The matrix is distributed symmetrically in row- and column-direction. Distributed matrix can be seen as a (r, r) square matrix of matrices. r*r =< processors, where r is division in each-direction and (r+1) * (r+1) > processors.
Definition at line 102 of file matrix_skeletons.h. Referenced by calcDivision(). |