Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
autopep8 our python examples
[simgrid.git] / examples / python / exec-basic / exec-basic.py
index 6577bd5..fa001b9 100644 (file)
@@ -6,6 +6,7 @@
 import sys
 from simgrid import *
 
+
 def executor():
     # execute() tells SimGrid to pause the calling actor until
     # its host has computed the amount of flops passed as a parameter
@@ -13,20 +14,22 @@ def executor():
     this_actor.info("Done.")
     # This simple example does not do anything beyond that
 
+
 def privileged():
     # You can also specify the priority of your execution as follows.
     # An execution of priority 2 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.
-    this_actor.execute(98095, priority = 2);
-    this_actor.info("Done.");
+    this_actor.execute(98095, priority=2)
+    this_actor.info("Done.")
 
     # Note that the timings printed when executing this example are a bit misleading,
     # because the uneven sharing only last until the privileged actor ends.
     # After this point, the unprivileged one gets 100% of the CPU and finishes
     # quite quickly.
 
+
 i = 0
 if "--" in sys.argv:
     i = sys.argv.index("--")
@@ -36,4 +39,4 @@ e.load_platform(sys.argv[i+1])
 Actor.create("executor", Host.by_name("Tremblay"), executor)
 Actor.create("privileged", Host.by_name("Tremblay"), privileged)
 
-e.run()
\ No newline at end of file
+e.run()