Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / examples / python / actor-yield / actor-yield.py
1 # Copyright (c) 2017-2019. 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 import sys
7 from simgrid import *
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 # Main function of the Yielder process
18 class Yielder:
19     number_of_yields = 0
20     def __init__(self, *args):
21         self.number_of_yields = int(args[0])
22     def __call__(self):
23         for _ in range(self.number_of_yields):
24             this_actor.yield_()
25         this_actor.info("I yielded {:d} times. Goodbye now!".format(self.number_of_yields))
26
27 if __name__ == '__main__':
28     e = Engine(sys.argv)
29
30     e.load_platform(sys.argv[1])             # Load the platform description
31     e.register_actor("yielder", Yielder)  # Register the class representing the actors
32
33     e.load_deployment(sys.argv[2])
34
35     e.run() # - Run the simulation