1. Error-message:
Following error message was obtained while compiling a code with mpif90 from openmpi-1.5:
error #6285: There is no matching specific subroutine for this generic subroutine call. [MPI_TYPE_GET_EXTENT]
call MPI_TYPE_GET_EXTENT(MPI_COMPLEX,ab,sofcomplex,ierr)
Solution that worked out:
Code was using module mpi. The statement 'use mpi' was removed and was replaced with include"mpif.h".
No comments:
Post a Comment