GROMACS version: 2020.2
GROMACS modification: Yes/No
I was trying to install Deep-md with GROMACS following the link
1.6. Install GROMACS with DeepMD — DeePMD-kit documentation. To do this, I have followed the link to install Deep-MD: 1.2. Install from source code — DeePMD-kit documentation
Here I have successfully completed the 1.2.1 ( install-the-python-interface) and 1.2.2. (Install the C++ interface) sections.
Then when I am running to build Gromacs with Deep-MD using the command:
#!/bin/bash
export CC=/usr/bin/gcc
export CXX=/usr/bin/g++
export CMAKE_PREFIX_PATH=“/home/qzyme/Downloads/fftw-3.3.9” # fftw libraries
mkdir build
cd build
cmake … -DCMAKE_CXX_STANDARD=14 \ # not required, but c++14 seems to be more compatible with higher version of tensorflow
-DGMX_MPI=ON
-DCMAKE_INSTALL_PREFIX=/usr/bin/gromacs-2020.2-deepmd
make -j
make install
I am getting the error at make step which is given below:
make[2]: *** [src/gromacs/modularsimulator/CMakeFiles/modularsimulator.dir/build.make:188: src/gromacs/modularsimulator/CMakeFiles/modularsimulator.dir/modularsimulator.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:4813: src/gromacs/modularsimulator/CMakeFiles/modularsimulator.dir/all] Error 2
make: *** [Makefile:166: all] Error 2