From: mquinson Date: Fri, 10 Dec 2010 12:51:50 +0000 (+0000) Subject: reduce verbosity when activating sexy new contextes X-Git-Tag: v3.6_beta2~795 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2cab02ccac64b54f391c6e50b18cdbf1752a3462 reduce verbosity when activating sexy new contextes git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9128 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/examples/msg/actions/actions.tesh b/examples/msg/actions/actions.tesh index e1eb299d91..0d3c3f510e 100644 --- a/examples/msg/actions/actions.tesh +++ b/examples/msg/actions/actions.tesh @@ -3,7 +3,6 @@ ! output sort $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment_split.xml --log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n -> [ 0.000000] (0:@) Using raw contexts. Because the glibc is just not good enough for us. > [500.005200] (1:p0@host0) p0 recv p1 500.005200 > [500.005200] (2:p1@host1) p1 send p0 1e10 500.005200 > [500.005201] (1:p0@host0) p0 compute 12 0.000001 @@ -12,7 +11,6 @@ $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment_split ! output sort $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml actions_allReduce.txt --log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n -> [ 0.000000] (0:@) Using raw contexts. Because the glibc is just not good enough for us. > [ 0.000000] (1:p0@host0) p0 comm_size 3 0.000000 > [100.010400] (1:p0@host0) p0 allReduce 5e8 5e8 100.010400 > [100.010400] (2:p1@host1) p1 allReduce 5e8 5e8 100.010400 @@ -24,7 +22,6 @@ $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml a ! output sort $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml actions_barrier.txt --log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n -> [ 0.000000] (0:@) Using raw contexts. Because the glibc is just not good enough for us. > [ 0.000000] (1:p0@host0) p0 comm_size 3 0.000000 > [ 0.000000] (2:p1@host1) p1 comm_size 3 0.000000 > [ 0.000000] (3:p2@host2) p2 comm_size 3 0.000000 @@ -37,7 +34,6 @@ $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml a ! output sort $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml actions_bcast.txt --log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n -> [ 0.000000] (0:@) Using raw contexts. Because the glibc is just not good enough for us. > [ 0.000000] (1:p0@host0) p0 comm_size 3 0.000000 > [ 25.005200] (1:p0@host0) p0 bcast 5e8 25.005200 > [ 25.005200] (2:p1@host1) p1 bcast 5e8 25.005200 @@ -58,7 +54,6 @@ $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml a ! output sort $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml actions_reduce.txt --log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n -> [ 0.000000] (0:@) Using raw contexts. Because the glibc is just not good enough for us. > [ 0.000000] (1:p0@host0) p0 comm_size 3 0.000000 > [ 25.005200] (2:p1@host1) p1 reduce 5e8 5e8 25.005200 > [ 25.005200] (3:p2@host2) p2 reduce 5e8 5e8 25.005200 @@ -70,7 +65,6 @@ $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml a ! output sort $ ./actions --log=actions.thres=verbose homogeneous_3_hosts.xml deployment.xml actions_with_isend.txt --log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n -> [ 0.000000] (0:@) Using raw contexts. Because the glibc is just not good enough for us. > [ 0.000000] (2:p1@host1) p1 Irecv p0 0.000000 > [ 0.000000] (3:p2@host2) p2 Irecv p1 0.000000 > [ 50.000000] (3:p2@host2) p2 compute 5e8 50.000000 diff --git a/src/simix/smx_context_raw.c b/src/simix/smx_context_raw.c index b91dfd67ae..b68712350b 100644 --- a/src/simix/smx_context_raw.c +++ b/src/simix/smx_context_raw.c @@ -296,7 +296,7 @@ static smx_context_t smx_ctx_raw_self_parallel(void) void SIMIX_ctx_raw_factory_init(smx_context_factory_t *factory) { - INFO0("Using raw contexts. Because the glibc is just not good enough for us."); + VERB0("Using raw contexts. Because the glibc is just not good enough for us."); smx_ctx_base_factory_init(factory); (*factory)->finalize = smx_ctx_raw_factory_finalize;