Unverified Commit 4a9ca6ec authored by Axel Kohlmeyer's avatar Axel Kohlmeyer Committed by GitHub
Browse files

Merge pull request #1661 from wmbrownIntel/user-intel-make-update

USER-INTEL: Adding explicit include path for MKL and updating benchma…
parents d28e5136 039665c6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -10,7 +10,8 @@ CC = mpiicpc
OPTFLAGS =      -xHost -O2 -fp-model fast=2 -no-prec-div -qoverride-limits \
                -qopt-zmm-usage=high
CCFLAGS =	-qopenmp -qno-offload -fno-alias -ansi-alias -restrict \
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS)
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS) \
                -I$(MKLROOT)/include
SHFLAGS =	-fPIC
DEPFLAGS =	-M

+2 −1
Original line number Diff line number Diff line
@@ -10,7 +10,8 @@ CC = mpiicpc
OPTFLAGS =      -xHost -O2 -fp-model fast=2 -no-prec-div -qoverride-limits \
                -qopt-zmm-usage=high
CCFLAGS =	-qopenmp -qno-offload -fno-alias -ansi-alias -restrict \
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS)
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS) \
                -I$(MKLROOT)/include
SHFLAGS =	-fPIC
DEPFLAGS =	-M

+2 −1
Original line number Diff line number Diff line
@@ -10,7 +10,8 @@ CC = mpicxx -cxx=icc
OPTFLAGS =      -xHost -O2 -fp-model fast=2 -no-prec-div -qoverride-limits \
                -qopt-zmm-usage=high
CCFLAGS =	-qopenmp -qno-offload -fno-alias -ansi-alias -restrict \
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS)
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS) \
                -I$(MKLROOT)/include
SHFLAGS =	-fPIC
DEPFLAGS =	-M

+2 −1
Original line number Diff line number Diff line
@@ -11,7 +11,8 @@ CC = mpicxx
OPTFLAGS =      -xHost -O2 -fp-model fast=2 -no-prec-div -qoverride-limits \
                -qopt-zmm-usage=high
CCFLAGS =	-qopenmp -qno-offload -fno-alias -ansi-alias -restrict \
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS)
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS) \
                -I$(MKLROOT)/include
SHFLAGS =	-fPIC
DEPFLAGS =	-M

+2 −1
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@ SHELL = /bin/sh
CC =		mpiicpc
OPTFLAGS =      -xMIC-AVX512 -O2 -fp-model fast=2 -no-prec-div -qoverride-limits
CCFLAGS =	-qopenmp -qno-offload -fno-alias -ansi-alias -restrict \
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS)
                -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG $(OPTFLAGS) \
                -I$(MKLROOT)/include
SHFLAGS =	-fPIC
DEPFLAGS =	-M

Loading