Added OpenMP to red Sky Makefile

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12142 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
athomps 2014-06-20 18:25:59 +00:00
parent 8dddba1112
commit cc1f207270
1 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# redsky - SUN X6275 with dual socket/quad core nodes, mpic++, openmpi, FFTW
# redsky - SUN X6275 nodes, dual socket/quad core 2.93 GHz Nehalem processors, mpic++, openmpi, OpenMP, no FFTW
SHELL = /bin/sh
@ -26,12 +26,12 @@ SHELL = /bin/sh
# compiler/linker settings
# specify flags and libraries needed for your compiler
CC = mpic++
CC = mpic++ -fopenmp
CCFLAGS = -O2 -xsse4.2 -funroll-loops -fstrict-aliasing
SHFLAGS = -fPIC
DEPFLAGS = -M
LINK = mpic++
LINK = mpic++ -fopenmp
LINKFLAGS = -O -xsse4.2
LIB = -lstdc++
SIZE = size
@ -68,9 +68,9 @@ MPI_LIB =
# PATH = path for FFT library
# LIB = name of FFT library
FFT_INC = -DFFT_FFTW -I${FFTW_INCLUDE}
FFT_PATH = -L${FFTW_LIB}
FFT_LIB = -lfftw
#FFT_INC = -DFFT_FFTW -I${FFTW_INCLUDE}
#FFT_PATH = -L${FFTW_LIB}
#FFT_LIB = -lfftw
# JPEG and/or PNG library, OPTIONAL
# see discussion in doc/Section_start.html#2_2 (step 7)