This guide was created for the Version 8 release of Amber using PGI Compiler Release 6.0, 6.1, 6.2, 7.0, or 7.1. This information is for both x64 processors running 64-bit Linux or x86 processors running 32-bit Linux.
Information about Amber (Assisted Model Building with Energy Refinement) can be found at the Amber home page.
Information about obtaining the source can be found at: http://amber.scripps.edu/amber8.license.html
None.
To make use of the PGI compilers, two "configure" scripts need to be modified. Replace the file, ./amber8/src/configure with the following file. Replace the file, ./amber8/src/pmemd/configure with the following file.
In addition to replacing the configure scripts, four new files need to be added to the ./amber8/src/pmemd/config_data directory. These files are needed to build the pmemd executable using the PGI compilers. The files to be added are:
Finally, the Makefile in the directory, ./amber8/src/leap/src/leap/Makefile needs to be changed to allow successful linking of both 32 bit and 64 bit executables. This is done by defining a parameter(X11LIBDIR) that will be specified on the make command line.
Change line 114
../Xmu/libXmu.a -L$(XHOME)/lib -lXt -lXext -lSM -lICE -lX11 -lm -lpthread
To:
../Xmu/libXmu.a -L$(XHOME)/$(X11LIBDIR) -lXt -lXext -lSM -lICE -lX11 -lm -lpthread
Configuring the source directories and building the executables depends on a number of different parameters. Before executing these commands make sure that your shell's "PATH" variable includes the location of the PGI compilers and the location of the MPICH environment.
For example, to configure and build for a single Opteron processor using the ACML and LAPACK libraries, execute the following commands:
cd ./amber8/src ./configure -nopar -opteron -acml -lapack pgf90 make -e YACC="/usr/bin/bison -y" X11LIBDIR="lib64" serial (64 bit) or make -e YACC="/usr/bin/bison -y" X11LIBDIR="lib" serial (32 bit) cd pmemd ./configure linux_opteron pgf90 nopar make install
To configure and build for a cluster of Pentium IV processors using MPICH, execute the following commands:
cd ./amber8/src ./configure -mpich -p4 pgf90 make -e YACC="/usr/bin/bison -y" X11LIBDIR="lib" parallel cd pmemd ./configure linux_p4 pgf90 mpich make install
There are two sets of tests provided with the Amber distrubution. The first set is used to verify correctness and the second set is used for benchmarking. To run these tests, do the following:
cd ./amber8/test make test cd ./amber8/benchmarks make bench
The AMBER correctness and benchmark tests self-verify their correctness using the script dacdif that is found in the directory ./amber8/test. Some tests will state that a possible failure has occured. You should inspect these failures and verify that the output is correct. Note that some precision differences are to be expected.
There are no known issues.