Difference between revisions of "Benchmarking: AMBER 12"

From Define Wiki
Jump to navigation Jump to search
m
 
(8 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
#Cuda 5.0
 
#Cuda 5.0
 
#Intel Compilers
 
#Intel Compilers
 +
#Mvapich2 (build with Intel compilers)
 +
 
==Software==
 
==Software==
The Amber12 is available on 10.0.0.220 @ software/hpc/nvidia_gpu/
+
Amber12 (amber12.tgz) is available on ''10.0.0.220'' @ ''software/hpc/nvidia_gpu'' <br>
 +
Copy it over to the install location and untar it
 +
tar zxf amber12.tgz
 +
cd amber12
 +
 
 
==Build Environment==
 
==Build Environment==
 
<syntaxhighlight>module load intel/compilers/13.0.1
 
<syntaxhighlight>module load intel/compilers/13.0.1
Line 16: Line 22:
 
===Serial Version===
 
===Serial Version===
 
<syntaxhighlight>./configure -noX11 intel
 
<syntaxhighlight>./configure -noX11 intel
make install</syntaxhighlight>
+
make install
 +
.
 +
.
 +
.
 +
Installation of pmemd.amoeba complete
 +
.
 +
Installation of Amber12 (serial) is complete</syntaxhighlight>
 +
 
 
===Single GPU Version===
 
===Single GPU Version===
 
<syntaxhighlight>export CUDA_HOME=/shared/apps/cuda/cuda-5.0
 
<syntaxhighlight>export CUDA_HOME=/shared/apps/cuda/cuda-5.0
./configure -noX11 -cuda intel</syntaxhighlight>
+
./configure -noX11 -cuda intel
 +
make install
 +
.
 +
.
 +
.
 +
Installation of pmemd.cuda complete</syntaxhighlight>
 +
 
 
===Multi GPU Version===
 
===Multi GPU Version===
 
<syntaxhighlight>module load mvapich2/1.8.1-intel-compilers
 
<syntaxhighlight>module load mvapich2/1.8.1-intel-compilers
./configure -noX11 -cuda -mpi intel</syntaxhighlight>
+
./configure -noX11 -cuda -mpi intel
 +
make install
 +
.
 +
.
 +
.
 +
Installation of pmemd.cuda.MPI complete</syntaxhighlight>

Latest revision as of 11:11, 7 March 2013

Requirements

  1. Cuda 5.0
  2. Intel Compilers
  3. Mvapich2 (build with Intel compilers)

Software

Amber12 (amber12.tgz) is available on 10.0.0.220 @ software/hpc/nvidia_gpu
Copy it over to the install location and untar it

tar zxf amber12.tgz
cd amber12

Build Environment

module load intel/compilers/13.0.1

export AMBERHOME=`pwd`

export CXX=icpc
export FC=ifort
export F90=ifort
export CC=icc

Build

Serial Version

./configure -noX11 intel
make install
.
.
.
Installation of pmemd.amoeba complete
.
Installation of Amber12 (serial) is complete

Single GPU Version

export CUDA_HOME=/shared/apps/cuda/cuda-5.0
./configure -noX11 -cuda intel
make install
.
.
.
Installation of pmemd.cuda complete

Multi GPU Version

module load mvapich2/1.8.1-intel-compilers
./configure -noX11 -cuda -mpi intel
make install
.
.
.
Installation of pmemd.cuda.MPI complete