Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reduce verbosity when activating sexy new contextes
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 10 Dec 2010 12:51:50 +0000 (12:51 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 10 Dec 2010 12:51:50 +0000 (12:51 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9128 48e7efb5-ca39-0410-a469-dd3cf9ba447f

examples/msg/actions/actions.tesh
src/simix/smx_context_raw.c

index e1eb299..0d3c3f5 100644 (file)
@@ -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
index b91dfd6..b687123 100644 (file)
@@ -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;