[DFTB-Plus-User] Re:a new error in Compiling DFTB_MPI
Bálint Aradi
aradi at uni-bremen.de
Mon Sep 22 17:21:13 CEST 2014
Dear Xiaobao Zhang,
> /workfs/cac/wangh/intel/Compiler/11.1/075/Compiler/11.1/075/mkl/lib/em64t/libmkl_blacs_openmpi_lp64.a(blacs_extended.o):(.data+0x0):
> undefined reference to `ompi_request_null'
> /workfs/cac/wangh/intel/Compiler/11.1/075/Compiler/11.1/075/mkl/lib/em64t/libmkl_blacs_openmpi_lp64.a(BI_BlacsAbort.o):
> In function `BI_BlacsAbort':
> _BI_BlacsAbort.c:(.text+0x24): undefined reference to `ompi_mpi_comm_world'
I'd guess, something is wrong with your local environment problem. Try
first to get your system to compile the MPI hello-world program below.
As long as this does not work, your problem is definitely not DFTB+ related.
Best regards,
Bálint
program test_mpi
use mpi
implicit none
integer :: size, rank, ierror
call mpi_init(ierror)
call mpi_comm_size(MPI_COMM_WORLD, size, ierror)
call mpi_comm_rank(MPI_COMM_WORLD, rank, ierror)
print *, 'node', rank, ': Hello world'
call mpi_finalize(ierror)
end program test_mpi
--
Dr. Bálint Aradi
Bremen Center for Computational Materials Science, University of Bremen
http://www.bccms.uni-bremen.de/cms/people/b_aradi/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <http://mailman.zfn.uni-bremen.de/pipermail/dftb-plus-user/attachments/20140922/b203c4f6/attachment.sig>
More information about the DFTB-Plus-User
mailing list