Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Tasks from a plugin to s4u
[simgrid.git] / examples / python / task-switch-host / task-switch-host.py
1 # Copyright (c) 2006-2023. The SimGrid Team. All rights reserved.
2 #
3 # This program is free software; you can redistribute it and/or modify it
4 # under the terms of the license (GNU LGPL) which comes with this package.
5
6 """
7 /* This example demonstrates how to dynamically modify a graph of tasks.
8  *
9  * Assuming we have two instances of a service placed on different hosts,
10  * we want to send data alternatively to thoses instances.
11  *
12  * We consider the following graph:
13
14            comm1
15      ┌────────────────────────┐
16      │                        │
17      │               Fafard   │
18      │              ┌───────┐ │
19      │      ┌──────►│ exec1 ├─┘
20      ▼      │       └───────┘
21  Tremblay ──┤comm0
22      ▲      │        Jupiter
23      │      │       ┌───────┐
24      │      └──────►│ exec2 ├─┐
25      │              └───────┘ │
26      │                        │
27      └────────────────────────┘
28            comm2
29  */
30  """
31
32 from argparse import ArgumentParser
33 import sys
34 from simgrid import Engine, Task, CommTask, ExecTask
35
36 def parse():
37     parser = ArgumentParser()
38     parser.add_argument(
39         '--platform',
40         type=str,
41         required=True,
42         help='path to the platform description'
43     )
44     return parser.parse_args()
45
46 def callback(t):
47     print(f'[{Engine.clock}] {t} finished ({t.count})')
48
49 def switch(t, hosts, execs):
50     comm0.destination = hosts[t.count % 2]
51     comm0.remove_successor(execs[t.count % 2 - 1])
52     comm0.add_successor(execs[t.count % 2])
53
54 if __name__ == '__main__':
55     args = parse()
56     e = Engine(sys.argv)
57     e.load_platform(args.platform)
58
59     # Retrieve hosts
60     tremblay = e.host_by_name('Tremblay')
61     jupiter = e.host_by_name('Jupiter')
62     fafard = e.host_by_name('Fafard')
63
64     # Create tasks
65     comm0 = CommTask.init("comm0")
66     comm0.bytes = 1e7
67     comm0.source = tremblay
68     exec1 = ExecTask.init("exec1", 1e9, jupiter)
69     exec2 = ExecTask.init("exec2", 1e9, fafard)
70     comm1 = CommTask.init("comm1", 1e7, jupiter, tremblay)
71     comm2 = CommTask.init("comm2", 1e7, fafard, tremblay)
72
73     # Create the initial graph by defining dependencies between tasks
74     exec1.add_successor(comm1)
75     exec2.add_successor(comm2)
76
77     # Add a function to be called when tasks end for log purpose
78     Task.on_end_cb(callback)
79
80     # Add a function to be called before each executions of comm0
81     # This function modifies the graph of tasks by adding or removing
82     # successors to comm0
83     comm0.on_this_start_cb(lambda t: switch(t, [jupiter, fafard], [exec1,exec2]))
84
85     # Enqueue two executions for task exec1
86     comm0.enqueue_execs(4)
87
88     # runs the simulation
89     e.run()