Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / python / exec-dvfs / exec-dvfs.py
index f84b673..aac9015 100644 (file)
@@ -1,13 +1,13 @@
-# Copyright (c) 2007-2019. The SimGrid Team. All rights reserved.          
+# Copyright (c) 2007-2022. The SimGrid Team. All rights reserved.
 #
 # This program is free software; you can redistribute it and/or modify it
-# under the terms of the license (GNU LGPL) which comes with this package. 
+# under the terms of the license (GNU LGPL) which comes with this package.
 
+from simgrid import Actor, Engine, Host, this_actor
 import sys
-from simgrid import *
 
 
-class dvfs:
+class Dvfs:
     def __call__(self):
         workload = 100E6
         host = this_actor.get_host()
@@ -30,7 +30,7 @@ class dvfs:
 
         host.pstate = new_pstate
 
-        this_actor.info("Current power peak={:f}".format(host.speed))
+        this_actor.info("Changed power peak={:f}".format(host.speed))
 
         # Run a second task
         this_actor.execute(workload)
@@ -42,15 +42,15 @@ class dvfs:
         host2 = Host.by_name("MyHost2")
         this_actor.info("Count of Processor states={:d}".format(host2.get_pstate_count()))
 
-        this_actor.info("Current power peak={:f}".format(host2.speed))
+        this_actor.info("Final power peak={:f}".format(host2.speed))
 
 if __name__ == '__main__':
     e = Engine(sys.argv)
     if len(sys.argv) < 2:
         raise AssertionError("Usage: exec-dvfs.py platform_file [other parameters] (got {:d} params)".format(len(sys.argv)))
-                
+
     e.load_platform(sys.argv[1])
-    Actor.create("dvfs_test", Host.by_name("MyHost1"), dvfs())
-    Actor.create("dvfs_test", Host.by_name("MyHost2"), dvfs())
+    Actor.create("dvfs_test", Host.by_name("MyHost1"), Dvfs())
+    Actor.create("dvfs_test", Host.by_name("MyHost2"), Dvfs())
 
     e.run()