Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / examples / python / exec-basic / exec-basic.py
1 # Copyright (c) 2018-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 def executor():
10     # execute() tells SimGrid to pause the calling actor until
11     # its host has computed the amount of flops passed as a parameter
12     this_actor.execute(98095)
13     this_actor.info("Done.")
14     # This simple example does not do anything beyond that
15
16 def privileged():
17     # You can also specify the priority of your execution as follows.
18     # An execution of priority 2 computes twice as fast as a regular one.
19     #
20     # So instead of a half/half sharing between the two executions,
21     # we get a 1/3 vs 2/3 sharing.
22     this_actor.execute(98095, priority = 2);
23     this_actor.info("Done.");
24
25     # Note that the timings printed when executing this example are a bit misleading,
26     # because the uneven sharing only last until the privileged actor ends.
27     # After this point, the unprivileged one gets 100% of the CPU and finishes
28     # quite quickly.
29
30 i = 0
31 if "--" in sys.argv:
32     i = sys.argv.index("--")
33 e = Engine(sys.argv[0:i])
34 e.load_platform(sys.argv[i+1])
35
36 Actor.create("executor", Host.by_name("Tremblay"), executor)
37 Actor.create("privileged", Host.by_name("Tremblay"), privileged)
38
39 e.run()