Page 1 of 1
cofigure with ifort
Posted: Mon May 10, 2010 9:47 am
by somourad
Hi Abinit user:
i would like to configure abinit with ifort, mkl and to optimize, so:
which commend to use in configure (example: ./configure..............)
Best regards
Re: cofigure with ifort
Posted: Mon May 10, 2010 2:41 pm
by mancini
Hi somourad,
here you have my configure file with ifort and mpich (I called it *_ifort).
FC="mpif90_ifort"
CC="mpicc_ifort"
CXX="mpicxx_ifort"
enable_debug="no"
enable_optim="aggressive"
#This option is imprtant with INTEL if you are on a small station
FCFLAGS_EXTRA="-heap-arrays 1024"
enable_mpi="yes"
enable_mpi_io="yes"
enable_linalg="yes"
with_linalg_libs="-llapack -lblas"
with_linalg_includes="-I/opt/intel/Compiler/11.1/064/mkl/include/"
with_linalg_libs="-L/opt/intel/Compiler/11.1/064/mkl/lib/em64t/ -lblas -llapack"
#enable_all_plugins="no"
# enable_libxc="no"
# enable_macroave="no"
# enable_wannier90="no"
# enable_bigdft="no"
# enable_netcdf="no"
Re: cofigure with ifort
Posted: Mon May 10, 2010 3:39 pm
by pouillon
Example files can be found in ~abinit/doc/config/build-examples/.
Re: cofigure with ifort
Posted: Mon May 10, 2010 5:50 pm
by somourad
thank you, all.