Difference between revisions of "LAMMPS"

From Tau Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
[[Category:Applications]]
 
[[Category:Applications]]
 +
[[Category:Showcase]]
 +
 +
{|
 +
!Link
 +
!Code Version
 +
!Machine
 +
!Date
 +
|-
 +
|[http://lammps.sandia.gov/ Sandia website]
 +
|[http://lammps.sandia.gov/download.html#git git repo]
 +
|Keeneland
 +
|March 2011
 +
|}
 +
 +
 +
== Building with TAU ==
 +
 +
To start copy over the file [[Media:Makefile.keeneland]] to the src/MAKE directory. Then do,
 +
 +
cd src
 +
make keeneland
 +
 +
 +
configure TAU:
 +
 
To compile LAMMPS on helios.cs.uoregon.edu,
 
To compile LAMMPS on helios.cs.uoregon.edu,
  

Revision as of 22:36, 19 March 2012


Link Code Version Machine Date
Sandia website git repo Keeneland March 2011


Building with TAU

To start copy over the file Media:Makefile.keeneland to the src/MAKE directory. Then do,

cd src
make keeneland


configure TAU:

To compile LAMMPS on helios.cs.uoregon.edu,

% cd ~sameer/apps/lammps-3Jun05
% cd src
% mpicxx -c *.cpp -DFFT_FFTW -DGZIP -I/usr/local/packages/fftw-2.1.5/include
% mpicxx *.o -o lammps -L/usr/local/packages/fftw-2.1.5/lib -lfftw
% cd ..
% cd examples/indent
% mpirun -np 4 ./lammps < in.indent

There is a MAKE directory there with makefiles that you can edit.