Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Try to fix a failure about mutex freed too early in RMA
[simgrid.git] / examples / python / synchro-barrier / synchro-barrier.tesh
1 #!/usr/bin/env tesh
2
3 p Testing Barrier
4
5 $ ${pythoncmd:=python3} ${PYTHON_TOOL_OPTIONS:=} ${bindir:=.}/synchro-barrier.py --platform ${platfdir}/two_hosts.xml --actors 1 "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
6 >[  0.000000] (1:master@Tremblay) Spawning 0 workers
7 >[  0.000000] (1:master@Tremblay) Waiting on the barrier
8 >[  0.000000] (1:master@Tremblay) Bye
9
10 $ ${pythoncmd:=python3} ${PYTHON_TOOL_OPTIONS:=} ${bindir:=.}/synchro-barrier.py --platform ${platfdir}/two_hosts.xml --actors 2 "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
11 >[  0.000000] (1:master@Tremblay) Spawning 1 workers
12 >[  0.000000] (2:worker-0@Jupiter) Waiting on the barrier
13 >[  0.000000] (1:master@Tremblay) Waiting on the barrier
14 >[  0.000000] (2:worker-0@Jupiter) Bye
15 >[  0.000000] (1:master@Tremblay) Bye
16
17 $ ${pythoncmd:=python3} ${PYTHON_TOOL_OPTIONS:=} ${bindir:=.}/synchro-barrier.py --platform ${platfdir}/two_hosts.xml --actors 10 "--log=root.fmt:[%10.6r]%e(%i:%a@%h)%e%m%n"
18 >[  0.000000] (1:master@Tremblay) Spawning 9 workers
19 >[  0.000000] (2:worker-0@Jupiter) Waiting on the barrier
20 >[  0.000000] (3:worker-1@Jupiter) Waiting on the barrier
21 >[  0.000000] (4:worker-2@Jupiter) Waiting on the barrier
22 >[  0.000000] (5:worker-3@Jupiter) Waiting on the barrier
23 >[  0.000000] (6:worker-4@Jupiter) Waiting on the barrier
24 >[  0.000000] (7:worker-5@Jupiter) Waiting on the barrier
25 >[  0.000000] (8:worker-6@Jupiter) Waiting on the barrier
26 >[  0.000000] (9:worker-7@Jupiter) Waiting on the barrier
27 >[  0.000000] (10:worker-8@Jupiter) Waiting on the barrier
28 >[  0.000000] (1:master@Tremblay) Waiting on the barrier
29 >[  0.000000] (2:worker-0@Jupiter) Bye
30 >[  0.000000] (3:worker-1@Jupiter) Bye
31 >[  0.000000] (4:worker-2@Jupiter) Bye
32 >[  0.000000] (5:worker-3@Jupiter) Bye
33 >[  0.000000] (6:worker-4@Jupiter) Bye
34 >[  0.000000] (7:worker-5@Jupiter) Bye
35 >[  0.000000] (8:worker-6@Jupiter) Bye
36 >[  0.000000] (9:worker-7@Jupiter) Bye
37 >[  0.000000] (10:worker-8@Jupiter) Bye
38 >[  0.000000] (1:master@Tremblay) Bye