-
Notifications
You must be signed in to change notification settings - Fork 901
main/v5.0: bad Fortran bindings for MPI_PSEND|RECV_INIT #11982
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
Comments
hppritcha
added a commit
to hppritcha/ompi
that referenced
this issue
Oct 12, 2023
The Fortran interfaces were using INTEGER for count arguement. The MPI-4 standard states that this argument should be INTEGER(KIND=MPI_COUNT_KIND). related to open-mpi#11982 Signed-off-by: Howard Pritchard <[email protected]>
hppritcha
added a commit
to hppritcha/ompi
that referenced
this issue
Oct 12, 2023
The Fortran interfaces were using INTEGER for count argument. The MPI-4 standard states that this argument should be INTEGER(KIND=MPI_COUNT_KIND). related to open-mpi#11982 Signed-off-by: Howard Pritchard <[email protected]>
hppritcha
added a commit
to hppritcha/ompi
that referenced
this issue
Oct 12, 2023
The Fortran interfaces were using INTEGER for count argument. The MPI-4 standard states that this argument should be INTEGER(KIND=MPI_COUNT_KIND). related to open-mpi#11982 Signed-off-by: Howard Pritchard <[email protected]>
hppritcha
added a commit
to hppritcha/ompi
that referenced
this issue
Oct 13, 2023
The Fortran interfaces were using INTEGER for count argument. The MPI-4 standard states that this argument should be INTEGER(KIND=MPI_COUNT_KIND). related to open-mpi#11982 Signed-off-by: Howard Pritchard <[email protected]> (cherry picked from commit e1134af)
I think this can be closed? |
Yes |
All fixed. Closing. |
bosilca
pushed a commit
to bosilca/ompi
that referenced
this issue
Feb 14, 2024
The Fortran interfaces were using INTEGER for count argument. The MPI-4 standard states that this argument should be INTEGER(KIND=MPI_COUNT_KIND). related to open-mpi#11982 Signed-off-by: Howard Pritchard <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Per #11967 (comment), regarding the MPI_PSEND_INIT / MPI_PRECV_INIT routines:
mpi_f08
binding has thecount
argument as typeINTEGER
INTEGER(KIND=MPI_COUNT_KIND)
count
argument as typeINTEGER
INTEGER(KIND=MPI_COUNT_KIND)
The text was updated successfully, but these errors were encountered: