From: Lucas Schnorr Date: Fri, 29 Apr 2011 13:44:12 +0000 (+0200) Subject: [trace] default colors for mpi states X-Git-Tag: v3_6_rc3~14^2~15 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/107321af5c208ff3b158c584c5a8fa0551e47580 [trace] default colors for mpi states --- diff --git a/src/instr/instr_smpi.c b/src/instr/instr_smpi.c index 139274fab0..7cdf66f0f1 100644 --- a/src/instr/instr_smpi.c +++ b/src/instr/instr_smpi.c @@ -5,6 +5,9 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "instr/instr_private.h" +#include +#include + #ifdef HAVE_TRACING @@ -12,6 +15,59 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_smpi, instr, "Tracing SMPI"); static xbt_dict_t keys; +static const char *smpi_colors[] ={ + "recv", "255 000 000", + "irecv", "255 135 135", + "send", "000 000 255", + "isend", "135 135 255", + "sendrecv", "000 255 255", + "wait", "255 255 000", + "waitall", "200 200 000", + "waitany", "200 200 150", + + "allgather", "255 000 000", + "allgatherv", "255 135 135", + "allreduce", "255 000 255", + "alltoall", "135 000 255", + "alltoallv", "200 135 255", + "barrier", "000 200 200", + "bcast", "000 200 100", + "gather", "255 255 000", + "gatherv", "255 255 135", + "reduce", "000 255 000", + "reducescatter", "135 255 135", + "scan", "255 150 060", + "scatterv", "135 000 135", + "scatter", "255 190 140", + + NULL, NULL, +}; + +static char *str_tolower (const char *str) +{ + char *ret = xbt_strdup (str); + int i, n = strlen (ret); + for (i = 0; i < n; i++) + ret[i] = tolower (str[i]); + return ret; +} + +static const char *instr_find_color (const char *state) +{ + char *target = str_tolower (state); + const char *ret = NULL; + const char *current; + unsigned int i = 0; + while ((current = smpi_colors[i])){ + if (strcmp (state, current) == 0){ ret = smpi_colors[i+1]; break; } //exact match + if (strstr(target, current)) { ret = smpi_colors[i+1]; break; }; //as substring + i+=2; + } + free (target); + return ret; +} + + static char *smpi_container(int rank, char *container, int n) { snprintf(container, n, "rank-%d", rank); @@ -133,7 +189,8 @@ void TRACE_smpi_collective_in(int rank, int root, const char *operation) smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); container_t container = getContainer (str); type_t type = getType ("MPI_STATE", container->type); - val_t value = getValue (operation, "1 1 1", type); + const char *color = instr_find_color (operation); + val_t value = getValue (operation, color, type); new_pajePushState (SIMIX_get_clock(), container, type, value); } @@ -154,11 +211,13 @@ void TRACE_smpi_ptp_in(int rank, int src, int dst, const char *operation) { if (!TRACE_smpi_is_enabled()) return; + char str[INSTR_DEFAULT_STR_SIZE]; smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE); container_t container = getContainer (str); type_t type = getType ("MPI_STATE", container->type); - val_t value = getValue (operation, "1 1 1", type); + const char *color = instr_find_color (operation); + val_t value = getValue (operation, color, type); new_pajePushState (SIMIX_get_clock(), container, type, value); }