Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Vector-ordered Rosenbrock Solver #172
Vector-ordered Rosenbrock Solver #172
Changes from 24 commits
4ac0fab
e27634b
d114885
6d2bc7d
bf57538
090b620
062c748
4546e4a
fa82486
54ec3e7
b362330
30bfafc
4c10839
b484cfe
2d50377
f4f6526
b8481f6
5a67815
983a510
997038b
8b08448
80a0f66
23889c3
276bc8f
2812b21
09bf9b8
680a2cb
61c87df
63bf319
15ae988
e53faf2
1f548de
830b426
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Hi @mattldawson and @K20shores, what do you think about this change? Matt and I briefly discussed about this. The issue is that
OpenMP::OpenMP_Fortran
is not found whentest_micm_c_api
is built. I removed it because this line belongs tofunction(create_standard_test_cxx)
and I assumed that it shouldn't needOpenMp_Fortran
for c++ tests.Matt mentioned we could specify fortran as one of the languages in the top-level
CMakeLists.txt
and updatefind_package
incmake/dependencies.cmake
I think that makes sense although I think it is useful to separate the fortran stuff from
MUSICA-C
as it is since we eventually pursue fortran-free. I'd like to hear what you all think.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 would like to keep fortran separated, but with the inclusion of tuvx into the musica-c library that line is blurred. Because of that I think we should go with Matt's suggestion. The other option is to check if TUVX is enabled before we check for OpenMP. If it is, enable the fortran language so that the fortran part of OpenMP is found, if that's possible
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 created a separate issue to tackle this.