Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add macro for consistent sunrealtype formatting #517

Open
wants to merge 18 commits into
base: develop
Choose a base branch
from

Conversation

Steven-Roberts
Copy link
Collaborator

Replaces #498 after v7.1.0 update

src/sundials/sundials_utils.h Outdated Show resolved Hide resolved
src/ida/ida_io.c Outdated Show resolved Hide resolved
src/nvector/parhyp/nvector_parhyp.c Outdated Show resolved Hide resolved
src/nvector/parallel/nvector_parallel.c Outdated Show resolved Hide resolved
src/nvector/openmpdev/nvector_openmpdev.c Outdated Show resolved Hide resolved
test/answers Outdated
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to open a PR in the answers repo to merge these updates into main

include/sundials/sundials_linearsolver.h Show resolved Hide resolved
include/sundials/sundials_nonlinearsolver.h Show resolved Hide resolved
include/sundials/sundials_types.h Outdated Show resolved Hide resolved
#if defined(SUNDIALS_SINGLE_PRECISION)

typedef float sunrealtype;
#define SUN_RCONST(x) x##F
#define SUN_BIG_REAL FLT_MAX
#define SUN_SMALL_REAL FLT_MIN
#define SUN_UNIT_ROUNDOFF FLT_EPSILON
#define SUN_FORMAT_E "% ." SUN_STRING(FLT_DIG) "e"
#define SUN_FORMAT_G "% ." SUN_STRING(FLT_DIG) "g"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at the updated outputs with "% ." I think it would be better to have this macro not include % (i.e., use #define SUN_FORMAT_G "." SUN_STRING(FLT_DIG) "g". This way the space after % can be added locally in the format string when it's needed for alignment (i.e., outputting matrix/vector entries) and in other cases (like PrintAllStats) the space can be excluded.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree the new output file format is not ideal with double spaces for positive numbers. What about this?

#define SUN_FORMAT_E      "% ." SUN_STRING(FLT_DIG) "e"
#define SUN_FORMAT_G      "%." SUN_STRING(FLT_DIG) "g"

Note I just removed a space from the g format. We can use SUN_FORMAT_E for cases where alignment is needed (I think this is already the case), and SUN_FORMAT_G elsewhere. We could even rename them to SUN_FORMAT_ALIGNED and SUN_FORMAT. I like the simplicity and consistency of just two macros which contain the entire format specifier. Let's discuss at tomorrow's meeting.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants