X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/41dd9405e023a6edd042bc02e5fd48c90aee5d56..2d0e084385301fde4fa115cbe12843190d76f953:/src/instr/instr_smpi.c diff --git a/src/instr/instr_smpi.c b/src/instr/instr_smpi.c index e991af267e..84f567a41c 100644 --- a/src/instr/instr_smpi.c +++ b/src/instr/instr_smpi.c @@ -8,9 +8,11 @@ #ifdef HAVE_TRACING +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_smpi, instr, "Tracing SMPI"); + static xbt_dict_t keys; -static char *TRACE_smpi_container(int rank, char *container, int n) +static char *smpi_container(int rank, char *container, int n) { snprintf(container, n, "rank-%d", rank); return container; @@ -50,14 +52,41 @@ static char *TRACE_smpi_get_key(int src, int dst, char *key, int n) return key; } +static xbt_dict_t process_category; + +void TRACE_internal_smpi_set_category (const char *category) +{ + if (!TRACE_smpi_is_enabled()) return; + + //declare category + TRACE_category (category); + + char processid[INSTR_DEFAULT_STR_SIZE]; + snprintf (processid, INSTR_DEFAULT_STR_SIZE, "%p", SIMIX_process_self()); + if (xbt_dict_get_or_null (process_category, processid)) + xbt_dict_remove (process_category, processid); + if (category != NULL) + xbt_dict_set (process_category, processid, xbt_strdup(category), xbt_free); +} + +const char *TRACE_internal_smpi_get_category (void) +{ + if (!TRACE_smpi_is_enabled()) return NULL; + + char processid[INSTR_DEFAULT_STR_SIZE]; + snprintf (processid, INSTR_DEFAULT_STR_SIZE, "%p", SIMIX_process_self()); + return xbt_dict_get_or_null (process_category, processid); +} + void TRACE_smpi_alloc() { keys = xbt_dict_new(); + process_category = xbt_dict_new(); } void TRACE_smpi_start(void) { - if (IS_TRACING_SMPI) { + if (TRACE_smpi_is_enabled()) { TRACE_start(); } } @@ -65,96 +94,121 @@ void TRACE_smpi_start(void) void TRACE_smpi_release(void) { TRACE_surf_release(); - if (IS_TRACING_SMPI) { + if (TRACE_smpi_is_enabled()) { TRACE_end(); } } void TRACE_smpi_init(int rank) { - if (!IS_TRACING_SMPI) + if (!TRACE_smpi_is_enabled()) return; char str[INSTR_DEFAULT_STR_SIZE]; - TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); + smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); + + container_t father; if (TRACE_smpi_is_grouped()){ - pajeCreateContainer(SIMIX_get_clock(), str, "MPI_PROCESS", - SIMIX_host_self_get_name(), str); + father = getContainer (SIMIX_host_self_get_name()); }else{ - pajeCreateContainer(SIMIX_get_clock(), str, "MPI_PROCESS", - "platform", str); + father = getContainer ("0"); } + xbt_assert2(father!=NULL, + "Could not find a parent for mpi rank %s at function %s", str, __FUNCTION__); + newContainer(str, INSTR_SMPI, father); } void TRACE_smpi_finalize(int rank) { - if (!IS_TRACING_SMPI) + if (!TRACE_smpi_is_enabled()) return; char str[INSTR_DEFAULT_STR_SIZE]; - pajeDestroyContainer(SIMIX_get_clock(), "MPI_PROCESS", - TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE)); + smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); + destroyContainer(getContainer (str)); } void TRACE_smpi_collective_in(int rank, int root, const char *operation) { - if (!IS_TRACING_SMPI) + if (!TRACE_smpi_is_enabled()) return; char str[INSTR_DEFAULT_STR_SIZE]; - pajePushState(SIMIX_get_clock(), "MPI_STATE", - TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE), operation); + smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); + container_t container = getContainer (str); + type_t type = getType ("MPI_STATE"); + + pajePushState(SIMIX_get_clock(), type->id, container->id, operation); } void TRACE_smpi_collective_out(int rank, int root, const char *operation) { - if (!IS_TRACING_SMPI) + if (!TRACE_smpi_is_enabled()) return; char str[INSTR_DEFAULT_STR_SIZE]; - pajePopState(SIMIX_get_clock(), "MPI_STATE", - TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE)); + smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); + container_t container = getContainer (str); + type_t type = getType ("MPI_STATE"); + + pajePopState(SIMIX_get_clock(), type->id, container->id); } void TRACE_smpi_ptp_in(int rank, int src, int dst, const char *operation) { - if (!IS_TRACING_SMPI) + if (!TRACE_smpi_is_enabled()) return; char str[INSTR_DEFAULT_STR_SIZE]; - pajePushState(SIMIX_get_clock(), "MPI_STATE", - TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE), operation); + smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); + container_t container = getContainer (str); + type_t type = getType ("MPI_STATE"); + + pajePushState(SIMIX_get_clock(), type->id, container->id, operation); } void TRACE_smpi_ptp_out(int rank, int src, int dst, const char *operation) { - if (!IS_TRACING_SMPI) + if (!TRACE_smpi_is_enabled()) return; char str[INSTR_DEFAULT_STR_SIZE]; - pajePopState(SIMIX_get_clock(), "MPI_STATE", - TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE)); + smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); + container_t container = getContainer (str); + type_t type = getType ("MPI_STATE"); + + pajePopState(SIMIX_get_clock(), type->id, container->id); } void TRACE_smpi_send(int rank, int src, int dst) { - if (!IS_TRACING_SMPI) + if (!TRACE_smpi_is_enabled()) return; - char key[INSTR_DEFAULT_STR_SIZE], str[INSTR_DEFAULT_STR_SIZE]; + char key[INSTR_DEFAULT_STR_SIZE]; TRACE_smpi_put_key(src, dst, key, INSTR_DEFAULT_STR_SIZE); - pajeStartLink(SIMIX_get_clock(), "MPI_LINK", "0", "PTP", - TRACE_smpi_container(src, str, INSTR_DEFAULT_STR_SIZE), key); + + char str[INSTR_DEFAULT_STR_SIZE]; + smpi_container(src, str, INSTR_DEFAULT_STR_SIZE); + container_t container = getContainer (str); + type_t type = getType ("MPI_LINK"); + + pajeStartLink(SIMIX_get_clock(), type->id, type->father->id, "PTP", container->id, key); } void TRACE_smpi_recv(int rank, int src, int dst) { - if (!IS_TRACING_SMPI) + if (!TRACE_smpi_is_enabled()) return; - char key[INSTR_DEFAULT_STR_SIZE], str[INSTR_DEFAULT_STR_SIZE]; + char key[INSTR_DEFAULT_STR_SIZE]; TRACE_smpi_get_key(src, dst, key, INSTR_DEFAULT_STR_SIZE); - pajeEndLink(SIMIX_get_clock(), "MPI_LINK", "0", "PTP", - TRACE_smpi_container(dst, str, INSTR_DEFAULT_STR_SIZE), key); + + char str[INSTR_DEFAULT_STR_SIZE]; + smpi_container(dst, str, INSTR_DEFAULT_STR_SIZE); + container_t container = getContainer (str); + type_t type = getType ("MPI_LINK"); + + pajeEndLink(SIMIX_get_clock(), type->id, type->father->id, "PTP", container->id, key); } #endif /* HAVE_TRACING */