git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6725 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpi
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_SCSL
|
||||
FFT_PATH =
|
||||
FFT_LIB =
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -25,12 +25,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -39,8 +43,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich.rts
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -48,7 +54,9 @@ FFT_INC = -DFFT_FFTW
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -57,35 +65,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH = -L/cygdrive/c/cygwin/mpich2-1.0.4p1/lib
|
||||
MPI_LIB = -lmpich
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW -I/cygdrive/c/cygwin/fftw/include
|
||||
FFT_PATH = -L/cygdrive/c/cygwin/fftw/lib
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW -I/home/jlane/fftw-2.1.5/fftw
|
||||
FFT_PATH = -L/home/jlane/fftw-2.1.5/fftw/.libs
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -I../STUBS
|
||||
MPI_PATH =
|
||||
MPI_LIB = ../STUBS/libmpi.a
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW -I/sw/include
|
||||
FFT_PATH = -L/sw/lib
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP -DLAMMPS_JPEG
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB = /usr/local/lib/libjpeg.a
|
||||
|
||||
# additional system settings needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lgfortran
|
||||
reax_SYSLIB = -lgfortran
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH =
|
||||
reax_SYSPATH =
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -37,12 +37,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -51,8 +55,10 @@ MPI_INC =
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -60,7 +66,9 @@ FFT_INC = -DFFT_FFTW -I${FFTW_INCLUDE}
|
||||
FFT_PATH = -L${FFTW_LIB}
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -69,35 +77,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -48,7 +54,9 @@ FFT_INC = -DFFT_FFTW -I$(FFTWDIR)/include
|
||||
FFT_PATH = -L$(FFTWDIR)/lib
|
||||
FFT_LIB = -ldfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -57,37 +65,12 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
user-awpwpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
include Makefawpmd.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC =
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpi
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -I../STUBS
|
||||
MPI_PATH =
|
||||
MPI_LIB = ../STUBS/libmpi.a
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,13 +19,17 @@ SIZE = size
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# edit as needed for your machine
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC = -DOMPI_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from kspace package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -45,7 +51,9 @@ FFT_INC = -DFFT_FFTW -I${FFTW}/include
|
||||
FFT_PATH = -L${FFTW}/lib
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -54,35 +62,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lgfortran
|
||||
reax_SYSLIB = -lgfortran
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/usr/lib
|
||||
reax_SYSPATH = -L/usr/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -20,12 +20,16 @@ SIZE = i686-pc-mingw32-size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_XDR # -DLAMMPS_GZIP -DMALLOC_MEMALIGN=64
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC = -I../STUBS
|
||||
MPI_PATH =
|
||||
MPI_LIB = mpi.o
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -43,7 +49,9 @@ FFT_INC = -DFFT_NONE #-DFFT_SINGLE
|
||||
FFT_PATH =
|
||||
FFT_LIB = #-lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -52,35 +60,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L$(HOME)/cuda/lib64 -Wl,-rpath,$(HOME)/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -25,12 +25,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -39,8 +43,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -mt_mpi
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -48,7 +54,9 @@ FFT_INC = -DFFT_FFTW -I/opt/intel/mkl/10.0.011/include/fftw
|
||||
FFT_PATH =
|
||||
FFT_LIB = /opt/intel/mkl/10.0.011/lib/em64t/libfftw2xc_intel.a
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -57,35 +65,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -I/opt/mpich-mx/include
|
||||
MPI_PATH = -L/opt/mpich-mx/lib -L/opt/mx/lib
|
||||
MPI_LIB = -lmpich -lmyriexpress
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_NONE
|
||||
FFT_PATH =
|
||||
FFT_LIB =
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -20,12 +20,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC =
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -43,7 +49,9 @@ FFT_INC = -DFFT_FFTW
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -52,35 +60,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -I/usr/local/mpich-1.2.6/pg/include
|
||||
MPI_PATH = -L/usr/local/mpich-1.2.6/pg/lib
|
||||
MPI_LIB = -lmpich
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_FFTW
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -20,12 +20,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC =
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -43,7 +49,9 @@ FFT_INC = -DFFT_FFTW -I/scr/oppe/LAMMPS/fftw-2.1.5/include
|
||||
FFT_PATH = -L/scr/oppe/LAMMPS/fftw-2.1.5/lib
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -52,35 +60,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -I/usr/local/mpich-1.2.6-eth/include
|
||||
MPI_PATH = -L/usr/local/mpich-1.2.6-eth/lib
|
||||
MPI_LIB = -lmpich
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_NONE
|
||||
FFT_PATH =
|
||||
FFT_LIB =
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -48,12 +48,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -62,8 +66,10 @@ MPI_INC =
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -71,7 +77,9 @@ FFT_INC = -DFFT_FFTW -I${FFTW_INCLUDE}
|
||||
FFT_PATH = -L${FFTW_LIB}
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -80,35 +88,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = ${BLASLIB}
|
||||
user-awpmd_SYSLIB = ${BLASLIB}
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/projects/global/x86_64/compilers/intel/intel-11.1-cprof-064/lib/intel64
|
||||
reax_SYSPATH = -L/projects/global/x86_64/compilers/intel/intel-11.1-cprof-064/lib/intel64
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -24,12 +24,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP -DLAMMPS_XDR
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -38,8 +42,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich.rts -lmsglayer.rts -lrts.rts -ldevices.rts
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -47,7 +53,9 @@ FFT_INC = -DFFT_FFTW -I//usr/local/apps/V1R3/fftw-2.1.5d/include
|
||||
FFT_PATH = -L/usr/local/apps/V1R3/fftw-2.1.5d/lib
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -56,35 +64,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -20,12 +20,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -43,7 +49,9 @@ FFT_INC = -DFFT_FFTW -I/usr/common/usg/fftw/2.1.5/include
|
||||
FFT_PATH = -L/usr/common/usg/fftw/2.1.5/lib
|
||||
FFT_LIB = -lfftw -lfftw_mpi
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -52,35 +60,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,13 +19,17 @@ SIZE = size
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# edit as needed for your machine
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC = -I../STUBS
|
||||
MPI_PATH =
|
||||
MPI_LIB = ../STUBS/libmpi.a
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from kspace package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -43,7 +49,9 @@ FFT_INC = -DFFT_NONE
|
||||
FFT_PATH =
|
||||
FFT_LIB =
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -52,35 +60,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lgfortran
|
||||
reax_SYSLIB = -lgfortran
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH =
|
||||
reax_SYSPATH =
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -I../STUBS
|
||||
MPI_PATH =
|
||||
MPI_LIB = ../STUBS/libmpi.a
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_NONE
|
||||
FFT_PATH =
|
||||
FFT_LIB =
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lgfortran
|
||||
reax_SYSLIB = -lgfortran
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH =
|
||||
reax_SYSPATH =
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC =
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_SCSL
|
||||
FFT_PATH =
|
||||
FFT_LIB =
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -I../STUBS
|
||||
MPI_PATH =
|
||||
MPI_LIB = ../STUBS/libmpi.a
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_NONE
|
||||
FFT_PATH =
|
||||
FFT_LIB =
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -25,12 +25,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -39,8 +43,10 @@ MPI_INC =
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -50,7 +56,9 @@ FFT_INC = -DFFT_FFTW -I$(FFTW)/include
|
||||
FFT_PATH = -L$(FFTW)/lib
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -59,35 +67,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -20,12 +20,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -43,7 +49,9 @@ FFT_INC = -DFFT_FFTW -I/projects/fftw/fftw-2.1.5/include
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -52,35 +60,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -45,7 +51,9 @@ FFT_INC = -DFFT_FFTW -I${FFTW_INC}
|
||||
FFT_PATH = -L${FFTW_LIB}
|
||||
FFT_LIB = ${FFTW_LIB}/libfftw.a
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -54,35 +62,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore
|
||||
reax_SYSLIB = -lifcore
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/apps/intel/10.1/fc/lib
|
||||
reax_SYSPATH = -L/opt/apps/intel/10.1/fc/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -38,12 +38,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -52,8 +56,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -61,7 +67,9 @@ FFT_INC = -DFFT_FFTW -I$(FFTW_INCLUDE)
|
||||
FFT_PATH =
|
||||
FFT_LIB = $(BLASLIB) $(FFTW_LINK_LINE)
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -70,35 +78,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -19,12 +19,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -33,8 +37,10 @@ MPI_INC = -I../STUBS
|
||||
MPI_PATH =
|
||||
MPI_LIB = ../STUBS/libmpi.a
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -42,7 +48,9 @@ FFT_INC = -DFFT_SGI
|
||||
FFT_PATH =
|
||||
FFT_LIB = -lcomplib.sgimath
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -51,35 +59,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -30,12 +30,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -44,8 +48,10 @@ MPI_INC =
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -53,7 +59,9 @@ FFT_INC = -DFFT_FFTW -I$(FFTW_INCLUDE)
|
||||
FFT_PATH = -L$(FFTW_LIB)
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -62,35 +70,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -llapack
|
||||
user-awpmd_SYSLIB = -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -20,12 +20,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -43,7 +49,9 @@ FFT_INC = -DFFT_FFTW -I/home/sjplimp/fftw/fftw
|
||||
FFT_PATH = -L/home/sjplimp/fftw/fftw/.libs
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -52,35 +60,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB =
|
||||
reax_SYSLIB =
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH =
|
||||
reax_SYSPATH =
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -21,12 +21,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP -DLAMMPS_XDR
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -35,8 +39,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB = -lmpich -lpthread
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -44,7 +50,9 @@ FFT_INC = -DFFT_FFTW -I$(FFTW_INC)
|
||||
FFT_PATH = -L$(FFTW_LIB)
|
||||
FFT_LIB = -ldfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -53,35 +61,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
reax_SYSLIB = -lifcore -lsvml -lompstub -limf
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
reax_SYSPATH = -L/opt/intel/fce/10.0.023/lib
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
@ -20,12 +20,16 @@ SIZE = size
|
||||
# ---------------------------------------------------------------------
|
||||
# LAMMPS-specific settings
|
||||
# specify settings for LAMMPS features you will use
|
||||
# if you change any -D setting, do full re-compile after "make clean"
|
||||
|
||||
# LAMMPS ifdef options, see doc/Section_start.html
|
||||
# LAMMPS ifdef settings, OPTIONAL
|
||||
# see possible settings in doc/Section_start.html#2_2 (step 9)
|
||||
|
||||
LMP_INC = -DLAMMPS_GZIP
|
||||
|
||||
# MPI library, can be src/STUBS dummy lib
|
||||
# MPI library, REQUIRED
|
||||
# see discussion in doc/Section_start.html#2_2 (step 10)
|
||||
# can point to dummy MPI library in src/STUBS as in Makefile.serial
|
||||
# INC = path for mpi.h, MPI compiler settings
|
||||
# PATH = path for MPI library
|
||||
# LIB = name of MPI library
|
||||
@ -34,8 +38,10 @@ MPI_INC = -DMPICH_SKIP_MPICXX
|
||||
MPI_PATH =
|
||||
MPI_LIB =
|
||||
|
||||
# FFT library, can be -DFFT_NONE if not using PPPM from KSPACE package
|
||||
# INC = -DFFT_FFTW, -DFFT_INTEL, -DFFT_NONE, etc, FFT compiler settings
|
||||
# FFT library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 11)
|
||||
# can be left blank to use provided KISS FFT library
|
||||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings
|
||||
# PATH = path for FFT library
|
||||
# LIB = name of FFT library
|
||||
|
||||
@ -43,7 +49,9 @@ FFT_INC = -DFFT_FFTW -I/home/sjplimp/fftw/fftw
|
||||
FFT_PATH = -L/home/sjplimp/fftw/fftw/.libs
|
||||
FFT_LIB = -lfftw
|
||||
|
||||
# JPEG library, only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# JPEG library, OPTIONAL
|
||||
# see discussion in doc/Section_start.html#2_2 (step 12)
|
||||
# only needed if -DLAMMPS_JPEG listed with LMP_INC
|
||||
# INC = path for jpeglib.h
|
||||
# PATH = path for JPEG library
|
||||
# LIB = name of JPEG library
|
||||
@ -52,35 +60,11 @@ JPG_INC =
|
||||
JPG_PATH =
|
||||
JPG_LIB =
|
||||
|
||||
# additional system libraries needed by LAMMPS package libraries
|
||||
# these settings are IGNORED if the corresponding LAMMPS package
|
||||
# (e.g. gpu, meam) is NOT included in the LAMMPS build
|
||||
# SYSINC = settings to compile with
|
||||
# SYSLIB = libraries to link with
|
||||
# SYSPATH = paths to libraries
|
||||
|
||||
gpu_SYSINC =
|
||||
meam_SYSINC =
|
||||
reax_SYSINC =
|
||||
user-atc_SYSINC =
|
||||
user-awpmd_SYSINC =
|
||||
|
||||
gpu_SYSLIB = -lcudart -lcuda
|
||||
meam_SYSLIB =
|
||||
reax_SYSLIB =
|
||||
user-atc_SYSLIB = -lblas -llapack
|
||||
user-awpmd_SYSLIB = -lblas -llapack
|
||||
|
||||
gpu_SYSPATH = -L/usr/local/cuda/lib64
|
||||
meam_SYSPATH =
|
||||
reax_SYSPATH =
|
||||
user-atc_SYSPATH =
|
||||
user-awpmd_SYSPATH =
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# build rules and dependencies
|
||||
# no need to edit this section
|
||||
|
||||
include Makefile.package.settings
|
||||
include Makefile.package
|
||||
|
||||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(PKG_SYSINC)
|
||||
|
||||
Reference in New Issue
Block a user