#include <utility>
#include <mpi.h>
#include <iostream>
#include <iomanip>
#include "Serializer.h"
#include "matrix.h"
#include "template_mpitype.h"
#include "../util/skeleton.h"
#include "dist_matrix.h"
#include "matrix_skeletons.tpp"
Include dependency graph for matrix_skeletons.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Classes | |
class | matrix_skeletons |
Collection of skeletons on matricies(two-dimensional arrays). More... | |
class | matrix_skeletons::Mkpair< B, C > |
A function object making a pair (fst, snd). | |
Defines | |
#define | SKEL_MPI_COMM_WORLD MPI_COMM_WORLD |
#define | SKEL_MPI_INTRACOMM MPI_Comm |
#define | SKEL_MPI_Request MPI_Request |
#define | SKEL_MPI_Wait(request) MPI_Wait (&request, MPI_STATUS_IGNORE) |
#define | SKEL_MPI_Send(buf, count, datatype, dest, tag, comm) MPI_Send(buf, count, datatype, dest, tag, comm) |
#define | SKEL_MPI_Recv(buf, count, datatype, source, tag, comm) MPI_Recv(buf, count, datatype, source, tag, comm, MPI_STATUS_IGNORE) |
#define | SKEL_MPI_Isend(buf, count, datatype, dest, tag, comm, request) MPI_Isend( (void*)(buf), count, datatype, dest, tag, comm, &request ) |
#define | SKEL_MPI_Irecv(buf, count, datatype, source, tag, comm, request) MPI_Irecv( (void*)(buf), count, datatype, source, tag, comm, &request ) |
#define | SKEL_MPI_Bcast(buf, count, datatype, source, comm) MPI_Bcast((void*)(buf), count, datatype, source, comm) |
#define | SKEL_MPI_Comm_split(oldcomm, color, key, newcomm) MPI_Comm_split(oldcomm, color, key, &newcomm) |
#define | SKEL_MPI_Comm_rank(comm, rank) MPI_Comm_rank(comm, &rank) |
#define | SKEL_MPI_Comm_size(comm, size) MPI_Comm_size(comm, &size) |
#define | SKEL_MPI_Comm_free(comm) MPI_Comm_free(&comm) |
Definition in file matrix_skeletons.h.
|
Definition at line 40 of file matrix_skeletons.h. |
|
Definition at line 44 of file matrix_skeletons.h. |
|
Definition at line 42 of file matrix_skeletons.h. |
|
Definition at line 43 of file matrix_skeletons.h. Referenced by matrix_skeletons::calcDivision(). |
|
Definition at line 41 of file matrix_skeletons.h. |
|
Definition at line 32 of file matrix_skeletons.h. |
|
Definition at line 33 of file matrix_skeletons.h. |
|
Definition at line 39 of file matrix_skeletons.h. |
|
Definition at line 38 of file matrix_skeletons.h. |
|
Definition at line 37 of file matrix_skeletons.h. |
|
Definition at line 34 of file matrix_skeletons.h. |
|
Definition at line 36 of file matrix_skeletons.h. |
|
Definition at line 35 of file matrix_skeletons.h. |