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.
Install Abinit on Redhat HPC [SOLVED]
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.
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.
Install Abinit on Redhat HPC
- Attachments
-
config.log
- Configue log file
- (145.15 KiB) Downloaded 439 times
Re: Install Abinit on Redhat HPC [SOLVED]
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
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
thanks for your help.