thanks.
Now I try to compile the lammps from git clone https://github.com/vasp-dev/lammps.
I sucessfully compile vasp and got the vaspml by oneapi2024
Code: Select all
FC = mpiifx -fc=ifx
FCL = mpiifx -fc=ifx
CXX_PARS = icpx
for ml:
CPP_OPTIONS += -Dlibvaspml
CPP_OPTIONS += -DVASPML_USE_CBLAS
CPP_OPTIONS += -DVASPML_USE_MKL
#CPP_OPTIONS += -DVASPML_DEBUG_LEVEL=3
CXX_ML = mpicxx
CXXFLAGS_ML = -O3 -std=c++17 -pedantic-errors -Wall -Wextra
INCLUDE_ML =
but I still fail to compile lammps:
in src/MAKE/Makefile.mpi
Code: Select all
CC = mpicxx
CCFLAGS = -g -O3 -std=c++17 -pedantic-errors -Wall -Wextra
SHFLAGS = -fPIC
DEPFLAGS = -M
LINK = mpicxx
LINKFLAGS = -g -O3 -std=c++17 -pedantic-errors -Wall -Wextra
LIB =
but errors look like when make mpi:
Code: Select all
mpicxx -g -O3 -std=c++17 -pedantic-errors -Wall -Wextra main.o -L. -llammps_mpi -L../../lib/vasp/vaspml/lib/ -lvaspml -ldl -o ../lmp_mpi
../../lib/vasp/vaspml/lib//libvaspml.a(KernelPolynomial.o): In function `vaspml::KernelPolynomial::computeDerivativeKernel(std::vector<double, std::allocator<double> >&, std::vector<double, std::allocator<double> >&, double const*, double const*, unsigned long const&, unsigned long const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const':
KernelPolynomial.cpp:(.text+0x405): undefined reference to `cblas_dgemm'
KernelPolynomial.cpp:(.text+0x56e): undefined reference to `cblas_dgemv'
KernelPolynomial.cpp:(.text+0xa0c): undefined reference to `cblas_daxpy'
../../lib/vasp/vaspml/lib//libvaspml.a(Kernel.o): In function `vaspml::Kernel::compute_kernelMatrix()':
Kernel.cpp:(.text+0x2002): undefined reference to `cblas_dgemm'
../../lib/vasp/vaspml/lib//libvaspml.a(DescriptorCollector.o): In function `vaspml::DescriptorCollector::computeNormSingleAtom(unsigned long)':
DescriptorCollector.cpp:(.text+0x37d): undefined reference to `cblas_dnrm2'
../../lib/vasp/vaspml/lib//libvaspml.a(DescriptorSHS2.o): In function `vaspml::DescriptorSHS2::computeForceTermsCPU(std::vector<std::vector<double, std::allocator<double> >, std::allocator<std::vector<double, std::allocator<double> > > > const&, std::vector<std::vector<double, std::allocator<double> >, std::allocator<std::vector<double, std::allocator<double> > > >&, std::vector<double, std::allocator<double> >&) const':
DescriptorSHS2.cpp:(.text+0x1d13): undefined reference to `cblas_ddot'
DescriptorSHS2.cpp:(.text+0x1d6c): undefined reference to `cblas_ddot'
DescriptorSHS2.cpp:(.text+0x1dc6): undefined reference to `cblas_ddot'
DescriptorSHS2.cpp:(.text+0x1e8c): undefined reference to `cblas_ddot'
DescriptorSHS2.cpp:(.text+0x1ee4): undefined reference to `cblas_ddot'
../../lib/vasp/vaspml/lib//libvaspml.a(DescriptorSHS2.o):DescriptorSHS2.cpp:(.text+0x1f3b): more undefined references to `cblas_ddot' follow
../../lib/vasp/vaspml/lib//libvaspml.a(Predictor.o): In function `vaspml::Predictor::compute_energyArray(vaspml::Kernel const&, unsigned long, unsigned long, unsigned long, double)':
Predictor.cpp:(.text+0x1fb): undefined reference to `cblas_daxpy'
../../lib/vasp/vaspml/lib//libvaspml.a(Predictor.o): In function `vaspml::Predictor::updateEnergy(vaspml::Kernel const&)':
Predictor.cpp:(.text+0x1d4d): undefined reference to `cblas_daxpy'
Predictor.cpp:(.text+0x1d9d): undefined reference to `cblas_ddot'
../../lib/vasp/vaspml/lib//libvaspml.a(Predictor.o): In function `vaspml::Predictor::computeEnergyPerType(unsigned long, unsigned long)':
Predictor.cpp:(.text+0x261): undefined reference to `cblas_ddot'
../../lib/vasp/vaspml/lib//libvaspml.a(DescriptorSHS3ReducedLinElem.o): In function `vaspml::DescriptorSHS3ReducedLinElem::computeSHS3clnmNoElement()':
DescriptorSHS3ReducedLinElem.cpp:(.text+0xe1): undefined reference to `cblas_daxpy'
../../lib/vasp/vaspml/lib//libvaspml.a(DescriptorSHS3ReducedLinElem.o): In function `vaspml::DescriptorSHS3ReducedLinElem::computeSHS3(std::shared_ptr<vaspml::DescriptorSHS2> const&, vaspml::TypeMap const&)':
DescriptorSHS3ReducedLinElem.cpp:(.text+0x33dc): undefined reference to `cblas_daxpy'
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:105: ../lmp_mpi] Error 1
make[1]: Leaving directory '/public/software/lammps-dev/src/Obj_mpi'
make: *** [Makefile:401: mpi] Error 2
I will appreciate if you can help me improve the situation.
Thankyou