Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
power is speed
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Mon, 18 Nov 2019 16:35:39 +0000 (17:35 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Mon, 18 Nov 2019 16:35:39 +0000 (17:35 +0100)
doc/doxygen/inside_extending.doc
docs/source/Configuring_SimGrid.rst
src/surf/surf_interface.cpp

index b47395f..f0f02b6 100644 (file)
@@ -55,7 +55,7 @@ and add an entry in the corresponding array in surf_interface.cpp
 ~~~~
 s_surf_model_description_t surf_cpu_model_description[] = {
   {"Cas01",
-   "Simplistic CPU model (time=size/power).",
+   "Simplistic CPU model (time=size/speed).",
    surf_cpu_model_init_Cas01},
   {"Plop",
    "The new plop CPU model.",
index a1498c9..db03b0a 100644 (file)
@@ -225,7 +225,7 @@ models for all existing resources.
 - ``cpu/model``: specify the used CPU model.  We have only one model
   for now:
 
-  - **Cas01:** Simplistic CPU model (time=size/power)
+  - **Cas01:** Simplistic CPU model (time=size/speed)
 
 - ``host/model``: The host concept is the aggregation of a CPU with a
   network card. Three models exists, but actually, only 2 of them are
index 0b2ea3c..3f3dc80 100644 (file)
@@ -92,7 +92,7 @@ void surf_network_model_init_NS3() {
 #endif
 
 const std::vector<surf_model_description_t> surf_cpu_model_description = {
-    {"Cas01", "Simplistic CPU model (time=size/power).", &surf_cpu_model_init_Cas01},
+    {"Cas01", "Simplistic CPU model (time=size/speed).", &surf_cpu_model_init_Cas01},
 };
 
 const std::vector<surf_model_description_t> surf_host_model_description = {