-
Notifications
You must be signed in to change notification settings - Fork 198
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
WIP: Multiprecision Build #1132
base: master
Are you sure you want to change the base?
Conversation
…or directives. Also updated HYPRE_utilities header file to include multiprecision header file.
* Complete adding multiprecision support for new seq_block_mv folder
This also fixes case insensitive issues on macs.
HYPRE_Precision vector_precision; | ||
#endif | ||
|
||
} hypre_Vector_mp; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need both hypre_Vector_mp
and hypre_Vector
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes actually. This was necessary to allow mixed-precision vector operations. However, when To Do item 2 is completed, this may take on a different form.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok! It would be nice to remove the duplications if we could
I'm seeing an error when building on a Mac
|
Thanks Victor. This appears as a warning for me (and I believe Rob as well) on my Mac. I intend to clean this and other warnings up. I should have listed that in the to-dos |
This PR will introduce multiprecision capabilities into master.
hypre currently supports single, double and longdouble precision in independent builds. This PR will enable an interoperable build of hypre in the different precisions. This will enable mixed-precision code development in hypre. Key components include:
To Do: