-
Notifications
You must be signed in to change notification settings - Fork 889
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
fortran:fix integer kind=8 problem #13159
Conversation
user reported problem on the ompi-users mail list. https://www.mail-archive.com/[email protected]//msg35382.html Signed-off-by: Howard Pritchard <[email protected]>
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.
LGTM (although my understand of the problem is limited)
@hppritcha Giles noted in 32db65f#commitcomment-154262549 that this might not be right -- the implicit string length argument is passed as an Can you dig a little deeper and see if this is actually correct? (oops -- should have posted this on #13160) |
FWIW, I would reverse that commit and fix it like that instead
|
actually there a number of *.F90 files that do what the original commit did. check how ompi_comm_set_name_f and similar are used in the use-mpi-f08 folder. Not saying they're correct but that explains why the user is able to build with default KIND=8 for older releases but compilation fails. Anyway I'll use a different approach which is nicer (no new variable introduction). |
according to these discussions these files are incorrect along with the prototypes in bindings/mpi-f-interfaces-bind.h
|
Yikes. Thanks for tracking this down, @hppritcha! |
user reported problem on the ompi-users mail list.
https://www.mail-archive.com/[email protected]//msg35382.html