10
1
mirror of https://github.com/pfloos/quack synced 2024-09-27 20:11:05 +02:00

added Olympe comf

This commit is contained in:
Abdallah Ammar 2024-08-22 16:48:15 +02:00
parent af65a4d69c
commit 8e26c35826

View File

@ -76,10 +76,21 @@ STDCXX=-lstdc++
FIX_ORDER_OF_LIBS=-Wl,--start-group
"""
compile_olympe = """
FC = ifort -mkl=parallel -qopenmp
AR = ar crs
FFLAGS = -I$IDIR -Ofast -traceback -xCORE-AVX512
CC = icc
CXX = icpc
LAPACK=
STDCXX=-lstdc++
FIX_ORDER_OF_LIBS=-Wl,--start-group
"""
if sys.platform in ["linux", "linux2"]:
compiler = compile_gfortran_linux
# compiler = compile_gfortran_linux
# compiler = compile_ifort_linux
compiler = compile_olympe
elif sys.platform == "darwin":
compiler = compile_gfortran_mac
else: