![]() |
GHOST
1.1.2
General, Hybrid, and Optimized Sparse Toolkit
|
Functions | |
ghost_error | ghost_map_create (ghost_map **map, ghost_gidx gdim, ghost_mpi_comm comm, ghost_maptype type, ghost_map_flags flags) |
Create a map. More... | |
static int | diag (ghost_gidx row, ghost_lidx *rowlen, ghost_gidx *col, void *val, __attribute__((unused)) void *arg) |
ghost_error | ghost_map_create_distribution (ghost_map *map, ghost_sparsemat_src_rowfunc *matsrc, double weight, ghost_map_dist_type distType, ghost_lidx *el_per_rank) |
Initialize a map's distribution. More... | |
void | ghost_map_destroy (ghost_map *map) |
Destroy a map and free all its resources if no more references to it exist. More... | |
int | ghost_rank_of_row (ghost_map *map, ghost_gidx row) |
Get the rank of a given global row in a given map. More... | |
ghost_map * | ghost_map_create_light (ghost_lidx dim, ghost_mpi_comm mpicomm) |
Create a light map with only a dimension and an MPI communicator. More... | |
|
static |
ghost_error ghost_map_create | ( | ghost_map ** | map, |
ghost_gidx | gdim, | ||
ghost_mpi_comm | comm, | ||
ghost_maptype | type, | ||
ghost_map_flags | flags | ||
) |
Create a map.
map | The map. |
gdim | The global dimensions of the map. |
comm | The map's MPI communicator. |
type | The type of the map. |
flags | Optional flags. |
ghost_error ghost_map_create_distribution | ( | ghost_map * | map, |
ghost_sparsemat_src_rowfunc * | matsrc, | ||
double | weight, | ||
ghost_map_dist_type | distType, | ||
ghost_lidx * | el_per_rank | ||
) |
Initialize a map's distribution.
map | The map. |
matsrc | The sparse matrix construction function or NULL. |
weight | The weight of this rank. |
distType | The distribution scheme. |
el_per_rank | An array of length $nranks which prescribed the distribution or NULL. |
In case matsrc is NULL, the only possible distType is GHOST_MAP_DIST_NROWS.
ghost_map* ghost_map_create_light | ( | ghost_lidx | dim, |
ghost_mpi_comm | mpicomm | ||
) |
Create a light map with only a dimension and an MPI communicator.
This map is usually used for non-distributed dense matrices. The map does not have to be free'd by the user but will be free'd in ghost_densemat_destroy().
dim | The dimension. |
mpicomm | The MPI communicator. |
void ghost_map_destroy | ( | ghost_map * | map | ) |
Destroy a map and free all its resources if no more references to it exist.
map | The map. |
This decreases the ghost_map::ref_count and, in case it is zero afterwards, free's the map's resources.
int ghost_rank_of_row | ( | ghost_map * | map, |
ghost_gidx | row | ||
) |
Get the rank of a given global row in a given map.
map | The map. |
row | The global row. |