Requested changes

This commit is contained in:
2024-09-16 13:51:10 +02:00
parent be3db085af
commit 1a1420890b
8 changed files with 75 additions and 190 deletions

View File

@@ -0,0 +1,20 @@
ifeq ($(ENABLE_MPI),true)
CC = mpiicx
DEFINES = -D_MPI
else
CC = icx
endif
GCC = gcc
LINKER = $(CC)
ifeq ($(ENABLE_OPENMP),true)
OPENMP = -qopenmp
endif
VERSION = --version
CFLAGS = -O3 -xHost -qopt-zmm-usage=high -std=c99 $(OPENMP) -Wno-unused-command-line-argument
LFLAGS = $(OPENMP)
DEFINES += -D_GNU_SOURCE# -DDEBUG
INCLUDES =
LIBS =