You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See the discussions here and here. There is a lot of room for improvement in the string to real parsing (which is currently using read(fmt=*) which is apparently quite slow.
The C strtod routine is much faster. Could add it as an option, or maybe even the default. Is it a guarantee that every Fortran compiler will have this? Seems to be true for Gfortran and Intel.
The text was updated successfully, but these errors were encountered:
See the discussions here and here. There is a lot of room for improvement in the string to real parsing (which is currently using
read(fmt=*)
which is apparently quite slow.The C
strtod
routine is much faster. Could add it as an option, or maybe even the default. Is it a guarantee that every Fortran compiler will have this? Seems to be true for Gfortran and Intel.The text was updated successfully, but these errors were encountered: