Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
trailing spaces
[simgrid.git] / examples / python / exec-basic / exec-basic.py
index 0d60965..09d9dd6 100644 (file)
@@ -7,7 +7,7 @@ import sys
 import simgrid as sg
 
 def executor():
-    # execute() tells SimGrid to pause the calling actor until 
+    # execute() tells SimGrid to pause the calling actor until
     # its host has computed the amount of flops passed as a parameter
     sg.execute(98095)
     sg.info("Done.")
@@ -20,7 +20,7 @@ def privileged():
     # Since the priority is 2, it computes twice as fast as a regular one.
     #
     # So instead of a half/half sharing between the two executions,
-    # we get a 1/3 vs 2/3 sharing. 
+    # we get a 1/3 vs 2/3 sharing.
     sg.execute(98095, 2);
     sg.info("Done.");
 
@@ -29,11 +29,13 @@ def privileged():
     # After this point, the unprivileged one gets 100% of the CPU and finishes
     # quite quickly.
 
-i = sys.argv.index("--")
+i = 0
+if "--" in sys.argv:
+    i = sys.argv.index("--")
 e = sg.Engine(sys.argv[0:i])
 e.load_platform(sys.argv[i+1])
 
-sg.create_actor("executor", sg.Host.by_name("Tremblay"), executor)
-sg.create_actor("privileged", sg.Host.by_name("Tremblay"), privileged)
+sg.Actor.create("executor", sg.Host.by_name("Tremblay"), executor)
+sg.Actor.create("privileged", sg.Host.by_name("Tremblay"), privileged)
 
 e.run()
\ No newline at end of file