Dear all,
I have problems to compile vasp 6.5.0 and 6.5.1 with either GNU or intel compilers because of
the hdf5 routine vhdf5_base.F
Is it a problem of my makefile.include (see below)?
Here is the error message:
vhdf5_base.F(378): error #6632: Keyword arguments are invalid without an explicit interface. [USE_FILE_LOCKING]
call h5pset_file_locking_f(plist_id, use_file_locking=.false., &
-------------------------------------------^
vhdf5_base.F(379): error #6632: Keyword arguments are invalid without an explicit interface. [IGNORE_DISABLED_LOCKS]
ignore_disabled_locks=.true., hdferr=ierr); call vh5_error(ierr,"vhdf5_base.F",379)
----------^
vhdf5_base.F(379): error #6632: Keyword arguments are invalid without an explicit interface. [HDFERR]
ignore_disabled_locks=.true., hdferr=ierr); call vh5_error(ierr,"vhdf5_base.F",379)
The makefile.include is:
# Default precompiler options
CPP_OPTIONS = -DHOST=\"LinuxIFC\" \
-DMPI -DMPI_BLOCK=8000 -Duse_collective \
-DscaLAPACK \
-DCACHE_SIZE=4000 \
-Davoidalloc \
-Dvasp6 \
-Dtbdyn \
-Dfock_dblbuf \
-D_OPENMP
CPP = fpp -f_com=no -free -w0 $*$(FUFFIX) $*$(SUFFIX) $(CPP_OPTIONS)
FC = mpiifort -qopenmp
FCL = mpiifort
FREE = -free -names lowercase
FFLAGS = -assume byterecl -w
OFLAG = -O2
OFLAG_IN = $(OFLAG)
DEBUG = -O0
# For what used to be vasp.5.lib
CPP_LIB = $(CPP)
FC_LIB = $(FC)
CC_LIB = icc
CFLAGS_LIB = -O
FFLAGS_LIB = -O1
FREE_LIB = $(FREE)
OBJECTS_LIB = linpack_double.o
# For the parser library
CXX_PARS = icpc
LLIBS = -lstdc++
##
## Customize as of this point! Of course you may change the preceding
## part of this file as well if you like, but it should rarely be
## necessary ...
##
# When compiling on the target machine itself, change this to the
# relevant target when cross-compiling for another architecture
VASP_TARGET_CPU = -march=core-avx2
FFLAGS += $(VASP_TARGET_CPU)
# Intel MKL (FFTW, BLAS, LAPACK, and scaLAPACK)
# (Note: for Intel Parallel Studio's MKL use -mkl instead of -qmkl)
FCL += -mkl
MKLROOT = /trinity/shared/apps/custom/x86_64/intel-2018.3.222/compilers_and_libraries_2018.3.222/linux/mkl
LLIBS += -L$(MKLROOT)/lib/intel64 -lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64
INCS =-I$(MKLROOT)/include/fftw
# HDF5-support (optional but strongly recommended, and mandatory for some features)
CPP_OPTIONS += -DVASP_HDF5
HDF5_ROOT = /trinity/shared/apps/tr17.10/x86_64/hdf5-icc18-impi-1.10.1
LLIBS += -L$(HDF5_ROOT)/lib -lhdf5_fortran
INCS += -I$(HDF5_ROOT)/include
# For the VASP-2-Wannier90 interface (optional)
CPP_OPTIONS += -DVASP2WANNIER90
WANNIER90_ROOT = /scratch/pboulet/packages/wannier90-3.1.0
LLIBS += -L$(WANNIER90_ROOT)/lib/intelmpi -lwannier
I am loading the following modules:
intel-mpi/64/2018.3.222
intel-compiler/64/2018.3.222
intel-mkl/64/2018.3.222
hdf5/icc18/impi/1.10.1
Any hint to solve this problem would be welcome.
Thank you
Pascal