Skip to content
Snippets Groups Projects
Commit 96c62314 authored by Jan Thorbecke's avatar Jan Thorbecke
Browse files

MKL standard for GNU compilers

parent 4437b150
No related branches found
No related tags found
No related merge requests found
......@@ -87,6 +87,8 @@ MKLROOT=/opt/intel/mkl/
#for GNU compilers
#you might need to add intel64 to : ${MKLROOT}/lib/intel64
BLAS = -L${MKLROOT}/lib/ -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
#on linux you want to use a group
#BLAS = -Wl,--start-group -L${MKLROOT}/lib/intel64 -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread -lm -ldl
#for intel compilers
#BLAS = -mkl
......@@ -102,6 +104,8 @@ OPTC += -DMKL -I$(MKLROOT)/include
#for GNU compilers
#you might need to add intel64 to : ${MKLROOT}/lib/intel64
FFT = -L${MKLROOT}/lib/ -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
#on linux you want to use groups
#FFT = -Wl,--start-group -L${MKLROOT}/lib/intel64 -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread -lm -ldl
#for intel compilers
#FFT = ${MKLROOT}/lib/libmkl_intel_lp64.a ${MKLROOT}/lib/libmkl_sequential.a ${MKLROOT}/lib/libmkl_core.a -lpthread -lm -ldl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment