Page 1 of 1

Install Abinit on Redhat HPC

Posted: Sun Dec 20, 2015 11:37 am
by Redmaz
Salam for All,
I have a IBM Platform HPC 4.1.1.1 with OS RHEL 6.4 and PMPI module.
I want install Abinit on it, i us those command :
$ scl enable devtoolset-2 bash #for load gcc 4.8
$ module load PMPI # for load MPI
$ ../configure --enable-mpi --with-mpi-prefix=/opt/ibm/platform_mpi/
$ make mj4
I have thise erreur:

mpi_type_frm=MPI_INTEGER16
1
Error: Symbol 'mpi_integer16' at (1) has no IMPLICIT type
make[5]: *** [m_xmpi.o] Error 1

Can you help me to please.

Re: Install Abinit on Redhat HPC  [SOLVED]

Posted: Sat Jan 09, 2016 2:07 pm
by gmatteo
Your MPI library does not support MPI_INTEGER16.
To make abinit compile:

1) Open the config.h file in your editor and remove the line:
#define FC_INT_QUAD 1

2) make clean
3) make -j4

Re: Install Abinit on Redhat HPC

Posted: Tue Jan 12, 2016 7:07 pm
by Redmaz
thanks for your help.