Install Abinit on Redhat HPC  [SOLVED]

option, parallelism,...

Moderators: fgoudreault, mcote

Forum rules
Please have a look at ~abinit/doc/config/build-config.ac in the source package for detailed and up-to-date information about the configuration of Abinit 8 builds.
For a video explanation on how to build Abinit 7.x for Linux, please go to: http://www.youtube.com/watch?v=DppLQ-KQA68.
IMPORTANT: when an answer solves your problem, please check the little green V-like button on its upper-right corner to accept it.
Locked
Redmaz
Posts: 5
Joined: Wed Jul 08, 2015 9:51 pm

Install Abinit on Redhat HPC

Post by Redmaz » Sun Dec 20, 2015 11:37 am

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.
Attachments
config.log
Configue log file
(145.15 KiB) Downloaded 418 times

User avatar
gmatteo
Posts: 291
Joined: Sun Aug 16, 2009 5:40 pm

Re: Install Abinit on Redhat HPC  [SOLVED]

Post by gmatteo » Sat Jan 09, 2016 2:07 pm

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

Redmaz
Posts: 5
Joined: Wed Jul 08, 2015 9:51 pm

Re: Install Abinit on Redhat HPC

Post by Redmaz » Tue Jan 12, 2016 7:07 pm

thanks for your help.

Locked