-
Notifications
You must be signed in to change notification settings - Fork 3
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
Windows CI #6
Windows CI #6
Conversation
Update `master` with changes from `v2.0`
6ce51e3
to
23c5e5e
Compare
Note: this should probably be reviewed together with mfem/mfem#2973 |
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.
Thanks @kanye-quest!
build-hypre/action.yml
Outdated
- name: Install Hypre | ||
run: | | ||
echo "Map target to options" | ||
if [[ "${{ inputs.target }}" == "int32" ]] | ||
then | ||
export hypre_options="--disable-fortran"; |
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.
Why is this removed?
(its purpose is to save a bit of build time as we don't need hypre's Fortran dependencies)
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.
When I looked into the Hypre documentation some time ago I couldn't find any reference to this option. Are you sure it is still a thing? We had a brief chat with @v-dobrev about it, and I believe he was also thinking that maybe we should remove it.
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.
It is indeed been many years since this was added, but I still see it here: https://github.com/hypre-space/hypre/blob/master/src/configure#L1514
Maybe it is not doing anything anymore? Part of the reason to use it was that otherwise one needed a Fortran compiler, which may not be available by default e.g. on a Mac.
If that's not an issue anymore, I am OK with removing it.
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.
I need some answers :)
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.
My main concern is the design comment. @kanye-quest if you agree with that, then maybe we can move forward and make the change, this has no impact on functionality.
@adrienbernede, can you take another look? |
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.
Looks good to me. Feel free to accept or reject the suggested comment.
Co-authored-by: Adrien Bernede <[email protected]>
Thanks @kanye-quest ! |
No description provided.