Updated Makefile.stampede: replacement options icc

The default options for Makefile.stampede did not compile. They had to be updated to include the `q` replacement options.
This commit is contained in:
tabedzki2 2020-01-07 21:47:43 -05:00 committed by GitHub
parent 8cc8c2793b
commit f1a23b1ea2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -6,13 +6,13 @@ SHELL = /bin/sh
# compiler/linker settings
# specify flags and libraries needed for your compiler
CC = mpicc -openmp -DLMP_INTEL_OFFLOAD -DLAMMPS_MEMALIGN=64
MIC_OPT = -offload-option,mic,compiler,"-fp-model fast=2 -mGLOB_default_function_attrs=\"gather_scatter_loop_unroll=4\""
CCFLAGS = -O3 -xhost -fp-model precise -restrict -override-limits $(MIC_OPT)
CC = mpicc -qopenmp -DLMP_INTEL_OFFLOAD -DLAMMPS_MEMALIGN=64
MIC_OPT = -qoffload-option,mic,compiler,"-fp-model fast=2 -mGLOB_default_function_attrs=\"gather_scatter_loop_unroll=4\""
CCFLAGS = -O3 -xhost -fp-model precise -restrict -qoverride-limits $(MIC_OPT)
SHFLAGS = -fPIC
DEPFLAGS = -M
LINK = mpicc -openmp
LINK = mpicc -qopenmp
LINKFLAGS = -O3 -xhost
LIB = -ltbbmalloc
SIZE = size