Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of github.com:simgrid/simgrid
[simgrid.git] / examples / python / exec-basic / exec-basic.py
1 # Copyright (c) 2018. 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 import simgrid as sg
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     sg.execute(98095)
13     sg.info("Done.")
14     # This simple example does not do anything beyond that
15
16 def privileged():
17     #  This version of execute() with two parameters specifies that this execution
18     # gets a larger share of the resource.
19     #
20     # Since the priority is 2, it computes twice as fast as a regular one.
21     #
22     # So instead of a half/half sharing between the two executions,
23     # we get a 1/3 vs 2/3 sharing. 
24     sg.execute(98095, 2);
25     sg.info("Done.");
26
27     # Note that the timings printed when executing this example are a bit misleading,
28     # because the uneven sharing only last until the privileged actor ends.
29     # After this point, the unprivileged one gets 100% of the CPU and finishes
30     # quite quickly.
31
32 i = sys.argv.index("--")
33 e = sg.Engine(sys.argv[0:i])
34 e.load_platform(sys.argv[i+1])
35
36 sg.create_actor("executor", sg.Host.by_name("Tremblay"), executor)
37 sg.create_actor("privileged", sg.Host.by_name("Tremblay"), privileged)
38
39 e.run()