X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eacb762be40b0552304e3ff0f6dfec4fe9be930b..0c4ab02e1487df55a599da87b9299664fed0f23d:/src/smpi/smpirun.in?ds=sidebyside diff --git a/src/smpi/smpirun.in b/src/smpi/smpirun.in index 5f6c9d3924..3016954230 100755 --- a/src/smpi/smpirun.in +++ b/src/smpi/smpirun.in @@ -44,7 +44,6 @@ Options: -trace-comment-file # put file contents on the top of the trace file as comment -trace-grouped # group MPI processes by location -trace-resource # trace resource utilization - -trace-viva # generate configuration for Viva's GraphView -trace-file # name of the tracefile (simgrid_smpi.trace) -ext # additional parameter (reserved) @@ -195,10 +194,6 @@ while true; do TRACE_RESOURCE="true" shift 1 ;; - "-trace-viva") - TRACE_VIVA="true" - shift 1 - ;; "-keep-temps") KEEP="true" SIMOPTS="$SIMOPTS --cfg=smpi/keep-temps:yes" @@ -475,10 +470,6 @@ if [ -n "${TRACE_ACTIVE}" ]; then if [ -n "${TRACE_RESOURCE}" ]; then TRACEOPTIONS="${TRACEOPTIONS} --cfg=tracing/categorized:yes --cfg=tracing/uncategorized:yes" fi - - if [ -n "${TRACE_VIVA}" ]; then - TRACEOPTIONS="${TRACEOPTIONS} --cfg=viva/categorized:smpi_cat.plist --cfg=viva/uncategorized:smpi_uncat.plist" - fi fi ##---------------------- end SMPI TRACING OPTIONS ---------------------------------