Skip to content

Commit

Permalink
Update vr_clo option
Browse files Browse the repository at this point in the history
  • Loading branch information
lathuili committed Oct 15, 2024
1 parent f1da4bd commit 3a77d37
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/update-vr-clo
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ installConfig= subprocess.Popen(["./config.status", "--config"],
env = env,
stdout = subprocess.PIPE)

line = (installConfig.stdout.readline()).decode("utf8")
line = (installConfig.stdout.readline()).decode("utf8").replace("'","")
spline=(line.strip()).split()
pathInstall="./install"
for conf in spline:
Expand Down
18 changes: 18 additions & 0 deletions vr_clo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,24 @@
\n\
This option can be activated with the env variable\n\
VERROU_ROUNDING_MODE.\n\
\n\
--float=yes|no [default=no]\n\
With this option, all double precision floating-point operations\n\
are replaced by simple precision equivalent in the frontend. Hence\n\
this option is compatible with all --rounding-mode options and with\n\
all other backends.\n\
\n\
• Numerically, option --rounding-mode=float is equivalent to\n\
--rounding-mode=nearest --float=yes.\n\
\n\
• Options --rounding-mode=nearest --float=yes instrument float\n\
operations by nearest wrapper function. So if your code\n\
contains float operations, it can be useful to use\n\
--vr-instr-float=no to speed up the instrumentation. The only\n\
drawback of this approach, is the deactivation of checks (such\n\
as Nan and Inf checks) over float operations.\n\
\n\
This option can be activated with the env variable VERROU_FLOAT.\n\
\n\
--libm=<auto_exclude|manual_exclude|instrumented>\n\
[default=auto_exclude]\n\
Expand Down

0 comments on commit 3a77d37

Please sign in to comment.