Commit 68966962 authored by Iker Martín Álvarez's avatar Iker Martín Álvarez
Browse files

Update README.md

parent 04b9f6b4
...@@ -45,4 +45,10 @@ enum mall_spawn_methods{MAM_SPAWN_BASELINE, MAM_SPAWN_MERGE}; ...@@ -45,4 +45,10 @@ enum mall_spawn_methods{MAM_SPAWN_BASELINE, MAM_SPAWN_MERGE};
enum mam_spawn_strats{MAM_STRAT_SPAWN_CLEAR, MAM_STRAT_SPAWN_PTHREAD, MAM_STRAT_SPAWN_SINGLE, MAM_STRAT_SPAWN_INTERCOMM}; enum mam_spawn_strats{MAM_STRAT_SPAWN_CLEAR, MAM_STRAT_SPAWN_PTHREAD, MAM_STRAT_SPAWN_SINGLE, MAM_STRAT_SPAWN_INTERCOMM};
enum mall_redistribution_methods{MAM_RED_BASELINE, MAM_RED_POINT}; enum mall_redistribution_methods{MAM_RED_BASELINE, MAM_RED_POINT};
enum mam_redistribution_strats{MAM_STRAT_RED_CLEAR, MAM_STRAT_RED_NONBLOCKING, MAM_STRAT_RED_PTHREAD, MAM_STRAT_RED_WAIT_SOURCES, MAM_STRAT_RED_WAIT_TARGETS}; enum mam_redistribution_strats{MAM_STRAT_RED_CLEAR, MAM_STRAT_RED_NONBLOCKING, MAM_STRAT_RED_PTHREAD, MAM_STRAT_RED_WAIT_SOURCES, MAM_STRAT_RED_WAIT_TARGETS};
typedef struct {
int numS, numT; // Amount of sources and targets
int rank_state; // State of the process during and after the reconfiguration (Survive, Spawned, Unneeded).
MPI_Comm comm;
} mam_user_reconf_t;
``` ```
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment