Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Two more references of the surf/precision option name
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Sat, 18 Feb 2023 10:32:21 +0000 (11:32 +0100)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Sat, 18 Feb 2023 10:32:21 +0000 (11:32 +0100)
src/kernel/resource/StandardLinkImpl.cpp
src/smpi/smpirun.in

index 6876a4b..9e50e7a 100644 (file)
@@ -64,8 +64,8 @@ void StandardLinkImpl::latency_check(double latency) const
 {
   static double last_warned_latency = sg_precision_timing;
   if (latency != 0.0 && latency < last_warned_latency) {
-    XBT_WARN("Latency for link %s is smaller than surf/precision (%g < %g)."
-             " For more accuracy, consider setting \"--cfg=surf/precision:%g\".",
+    XBT_WARN("Latency for link %s is smaller than precision/timing (%g < %g)."
+             " For more accuracy, consider setting \"--cfg=precision/timing:%g\".",
              get_cname(), latency, sg_precision_timing, latency);
     last_warned_latency = latency;
   }
index 27da2cc..2e94996 100755 (executable)
@@ -27,7 +27,7 @@ PRIVATIZE="--cfg=smpi/privatization:${SMPI_PRIVATIZATION:-@HAVE_PRIVATIZATION@}"
 NUMPROCS=0
 DEPLOYOPTS=""
 
-SIMOPTS="--cfg=surf/precision:1e-9 --cfg=network/model:SMPI"
+SIMOPTS="--cfg=precision/timing:1e-9 --cfg=network/model:SMPI"
 
 SMPITMPDIR="$(dirname $(mktemp -u))"