Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
337da86463bb0eadf9201cd93d5d98cb2dd6dc0d
[simgrid.git] / examples / python / actor-yield / actor-yield.py
1 # Copyright (c) 2017-2021. 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 from simgrid import Actor, Engine, Host, this_actor
7 import sys
8
9 # This example does not much: It just spans over-polite actor that yield a large amount
10 # of time before ending.
11 #
12 # This serves as an example for the simgrid.yield() function, with which an actor can request
13 # to be rescheduled after the other actor that are ready at the current timestamp.
14 #
15 # It can also be used to benchmark our context-switching mechanism.
16
17
18 def yielder (number_of_yields):
19     for _ in range(number_of_yields):
20         this_actor.yield_()
21     this_actor.info("I yielded {:d} times. Goodbye now!".format(number_of_yields))
22
23 if __name__ == '__main__':
24     e = Engine(sys.argv)
25
26     e.load_platform(sys.argv[1])             # Load the platform description
27   
28     Actor.create("yielder", Host.by_name("Tremblay"), yielder, 10)
29     Actor.create("yielder", Host.by_name("Ruby"), yielder, 15)
30
31     e.run()  # - Run the simulation