lammps/lib/gpu
sjplimp 7900602be9 git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4065 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2010-04-28 21:43:36 +00:00
..
Makefile.cyg Updating lib/gpu to version 2. 2010-02-04 21:33:18 +00:00
Makefile.nvidia Updating lib/gpu to version 2. 2010-02-04 21:33:18 +00:00
README Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
gb_gpu.cu Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
gb_gpu_extra.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
gb_gpu_kernel.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
gb_gpu_memory.cu Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
gb_gpu_memory.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
lj_gpu.cu git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4065 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2010-04-28 21:43:36 +00:00
lj_gpu_kernel.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
lj_gpu_memory.cu Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
lj_gpu_memory.h git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4065 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2010-04-28 21:43:36 +00:00
nvc_device.cu Updating lib/gpu to version 2. 2010-02-04 21:33:18 +00:00
nvc_device.h Updating lib/gpu to version 2. 2010-02-04 21:33:18 +00:00
nvc_get_devices.cu Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
nvc_macros.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
nvc_memory.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
nvc_timer.h git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4065 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2010-04-28 21:43:36 +00:00
nvc_traits.h Updating lib/gpu to version 2. 2010-02-04 21:33:18 +00:00
pair_gpu_atom.cu Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
pair_gpu_atom.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
pair_gpu_cell.cu Memory leak bug fix. 2010-03-18 23:15:19 +00:00
pair_gpu_cell.h Improvements in lib/gpu 2010-02-11 20:46:34 +00:00
pair_gpu_nbor.cu Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
pair_gpu_nbor.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
pair_gpu_texture.h Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00
pair_tex_tar.cu Adding changes from Mike Brown. 2010-03-04 22:35:29 +00:00

README

/* ----------------------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   http://lammps.sandia.gov, Sandia National Laboratories
   Steve Plimpton, sjplimp@sandia.gov

   Copyright (2003) Sandia Corporation.  Under the terms of Contract
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
   certain rights in this software.  This software is distributed under 
   the GNU General Public License.

   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------
   Contributing authors: Mike Brown (SNL), wmbrown@sandia.gov
                         Peng Wang (Nvidia), penwang@nvidia.com
                         Paul Crozier (SNL), pscrozi@sandia.gov
------------------------------------------------------------------------- */

                          GENERAL NOTES
                          
This library, libgpu.a, provides routines for GPU acceleration
of LAMMPS pair styles.  Currently, only CUDA enabled GPUs are
supported.  Compilation of this library requires installing the CUDA
GPU driver and CUDA toolkit for your operating system. In addition to
the LAMMPS library, the binary nvc_get_devices will also be
built. This can be used to query the names and properties of GPU
devices on your system.

NOTE: Installation of the CUDA SDK is not required.

Current pair styles supporting GPU acceleration:

  1. lj/cut/gpu
  2. gayberne/gpu

                     MULTIPLE LAMMPS PROCESSES
                     
When using GPU acceleration, you are restricted to one physical GPU
per LAMMPS process. This can be multiple GPUs on a single node or
across multiple nodes. Intructions on GPU assignment can be found in
the LAMMPS documentation.

                            SPEEDUPS

The speedups that can be obtained using this library are highly
dependent on the GPU architecture and the computational expense of the
pair potential. When comparing a single precision Tesla C1060 run to a
serial Intel Xeon 5140 2.33 GHz serial run, the speedup is ~4.42x for
lj/cut with a cutoff of 2.5. For gayberne with a cutoff of 7, the
speedup is >103x for 8000 particles. The speedup will improve with an
increase in the number of particles or an increase in the cutoff.

                    BUILDING AND PRECISION MODES

To build, edit the CUDA_CPP, CUDA_ARCH, CUDA_PREC, and CUDA_LINK files for
your machine. Type make. Additionally, the GPU package must be installed and
compiled for LAMMPS. The library supports 3 precision modes as determined by 
the CUDA_PREC variable:

  CUDA_PREC = -D_SINGLE_SINGLE  # Single precision for all calculations
  CUDA_PREC = -D_DOUBLE_DOUBLE  # Double precision for all calculations
  CUDA_PREC = -D_SINGLE_DOUBLE  # Accumulation of forces, etc. in double

NOTE: For the lj/cut pair style, only single precision will be used, even 
      if double precision is specified.
  
NOTE: Double precision is only supported on certain GPUS (with
      compute capability>=1.3).
      
NOTE: For Tesla and other graphics cards with compute capability>=1.3,
      make sure that -arch=sm_13 is set on the CUDA_ARCH line.

NOTE: The gayberne/gpu pair style will only be installed if the ASPHERE
      package has been installed before installing the GPU package in LAMMPS.