Skip to content

rangsimanketkaew/Auto-NWChem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NWChem Auto Compilation

Capture_Menu

An automated program for compiling NWchem with MPI on Linux cluster.

Prerequisites

  • Linux distribution: RHEL, CentOS, Ubuntu
  • Compiler: GNU, Intel, PGI, etc. (More details please consult NWChem manual)
  • Python 2.7
  • OpenMPI
  • OpenBLAS
  • OpenScaLAPACK (optional)

Parallel and Math libraries

Installing OpenMPI

Installing OpenBLAS

Compilers

Installing GNU Compiler Collection (gcc and gfortran)

Installing Intel Compiler Collection (icc and ifort)

Installing NWChem

  • (1) Install all package dependencies

RHEL & CentOS:

sudo yum -y update
sudo yum -y install python-devel gcc-gfortran openblas-devel openblas-serial64 openmpi-devel scalapack-openmpi-devel blacs-openmpi-devel elpa-openmpi-devel tcsh --enablerepo=epel

Ubuntu:

sudo apt -y update && sudo apt -y upgrade
sudo apt -y install python-dev gfortran libopenblas-dev libopenmpi-dev openmpi-bin tcsh make

For other Linux distro, please consult NWChem manual.

  • (2) Download the program source code from NWChem github to your home directory. Release file available here.
wget https://github.com/nwchemgit/nwchem/releases/download/6.8.1-release/nwchem-6.8.1-release.revision-v6.8-133-ge032219-src.2018-06-14.tar.bz2

Then uncompress a .tar.bz2 file using command

tar -xvf nwchem-6.8.1-release.revision-v6.8-133-ge032219-src.2018-06-14.tar.bz2

You should see nwchem-6.8.1 directory.

wget https://raw.githubusercontent.com/rangsimanketkaew/Auto-NWChem/master/Automatic-NWChem-Compile.sh

Change permission of script.

chmod 755 Automatic-NWChem-Compile.sh

Execute a script and follow the on-screen instruction.

./Automatic-NWChem-Compile.sh

For help page, run ./Automatic-NWChem-Compile.sh -help

Post-Compilation

Try running a simple calculation to see if NWChem works well. This is an input file for testing doing geometry optimization of azulene in gas phase using DFT/M06-2X/6-31G(d).

  • Single run
$NWCHEM_TOP/bin/$NWCHEM_TARGET/nwchem test-azulene.nw >& test-azulene.out &
  • Parallel run with 4 CPU cores
mpirun -np 4 $NWCHEM_TOP/bin/$NWCHEM_TARGET/nwchem test-azulene.nw >& test-azulene.out &

Caveat! The day I posted this script I was using NWChem version 6.6 and 6.8 on CentOS 6.9.

Optional: PATH SETTING. Instead of running nwchem using its absolute (full) path, you can make an aliase of NWChem program by adding the nwchem absolute path to $PATH using command

export PATH=/usr/local/nwchem-6.8.1/bin/LINUX/nwchem:$PATH

To do this every time you login, each user must permanently append the above command to $PATH in $HOME/.bashrc file.

echo export PATH=/usr/local/nwchem-6.8.1/bin/LINUX/nwchem:$PATH >> $HOME/.bashrc

Then activate the .bashrc file

source /home/$USER/.bashrc

Logout and login again, now you should be able to run NWChem by calling nwchem command.

Partial recompile

When you modify the code in src directory, program executable nwchem is needed to be compiled again. Due to full compilation of NWChem normally takes 20 - 30 minutes, you can easily recompile program executable withon a few seconds/minutes, depending on how much you have modified the code. To do this, just use make and make link commands to install that particular modified fortran code and link a new executable. First, create the scrip that includes all necessary environment variables setting that you have used for full compilation. (For this script, you can use the script that you used to compile program for the first time.) Then nevigate to sub-directory where you have modified the code and then append the following commands to the recompile script, e.g., you have modified fortran code in $NWCHEM_TOP/src/nwdft/scf_dft directory.

export USE_64TO32=y

cd $NWCHEM_TOP/src/nwdft/scf_dft
make

cd $NWCHEM_TOP/src
make link

NWChem execuable file, $NWCHEM_TOP/bin/LINUX64/nwchem, will be replaced with the updated executable.
P.S. export USE_64TO32=Y is needed for compilng program based on 32bit Libraries.

Running the tests

Standalone machine

Example of input & output files are available at $NWCHEM_TOP/QA/tests and $NWCHEM_TOP/examples/. Running NWChem calculation on standalone machine or HPC cluster with OpenMPI parallel using command

mpirun -np N nwchem INPUT-FILE.nw >& OUTPUT-FILE.log

To run NWChem with multithreaded/OpenMPI, one can use command

mpirun -np N -map-by socket -bind-to socket nwchem INPUT-FILE.nw >& OUTPUT-FILE.log

The following command may be useful

export OMP_NUM_THREADS=M

where N and M = number of processors and threads (integer & positive number), respectively. Set number of threads = 1 is recommended if the cluster/machine do not do I/O or even you do not know. This value provides the best performance. You can add optional to set the calculation for either single or multi-threaded process.

mpirun -genv OMP_NUM_THREADS M -np N nwchem INPUT-FILE.nw >& OUTPUT-FILE.log 

Running on MPI Cluster using MPICH

mpirun -np $NSLOTS nwchem INPUT-FILE.nw >& OUTPUT-FILE.log

Running on MPI Cluster using MVAPICH2

mpirun -genv OMP_NUM_THREADS M -genv MV2_ENABLE_AFFINITY 0 -np N nwchem INPUT-FILE.nw >& OUTPUT-FILE.log

The total number of cpu cores used for this calculation will be M x N.
If you run NWChem using command like "mpirun -np N nwchem INPUT-FILE.nw", this means the memory required for this calculation = (1 GB)x(N processors). More details of memory arrangement can be found on this website


Distributed system

Visit this repository for using job scheduler, such as PBS Pro, PBS, and SGE to submit NWChem job on connected cluster.

Error & Fixing

  • Error: libmpi_f90.so.1: cannot open
    When: Installing NWChem using make or configuration setting up command.
    Fix: You can fix this error using command
export LD_LIBRARY_PATH=/usr/local/openmpi/lib/:$LD_LIBRARY_PATH
source $HOME/.bashrc
  • Error: utilfname: cannot allocate or utilfname: cannot allocate:Received an Error in Communication
    When: Running NWChem with MPI and cannot allocate the memory with number of processors.
    Fix: You must specify the amount of memory PER processor core that NWChem can possibly employs for a calculation.
    This issue can be easily fixed by memory keyword to control the certain memory, for example a following command is used to limit the memory to 1 Gigabyte/process.
memory total 1 GB
  • Error: GNUmakefile:103: recipe for target 'libraries' failed and make: *** [libraries] Error 1
    When: Compiling NWChem with make command
    Fix: Check the suitable MPI libraries that you can use. Run the script and press [1] or run following command
mpif90 -show

More details

  • You should pay attention to NWChem manual before using my script. Do not trust the script but it works for me.
  • I also provide the scripts for compiling and installing NWChem for other platforms and parallel achitectures.
  • If use of those hand-made scripts is too difficult, you can install pre-compiled NWChem executable, for example, on CentOS using rpm or yum, and on Ubuntu using apt. A binary rpm file of different flavor of NWChem version 6.6 such as nwchem-common, nwchem-openmpi, and nwchem-mpich can be found at PKGS.org and RPM Find.
  • This post on my website may be helpful. Additionally, this post tell about frequently found error and solution.
  • If you have any problems, please google yourself first. If you still cannot resolve the problem, just go to Q&A forum of NWChem or visit NWChem compilation.

Good Luck :)

Author

Acknowledgments

  • NWChem developer
  • NWChem manual