Add ONEAPI config. Remove omp simd for full neigh.

This commit is contained in:
Jan Eitzinger
2022-04-01 15:57:54 +02:00
parent 0e742766b7
commit 5585ebcf42
5 changed files with 37 additions and 12 deletions

View File

@@ -67,6 +67,10 @@ ifeq ($(strip $(AVX512)),true)
DEFINES += -DAVX512
endif
ifeq ($(strip $(ENABLE_OMP_SIMD)),true)
DEFINES += -DENABLE_OMP_SIMD
endif
VPATH = $(SRC_DIR) $(ASM_DIR)
ASM = $(patsubst $(SRC_DIR)/%.c, $(BUILD_DIR)/%.s,$(wildcard $(SRC_DIR)/*.c))
OVERWRITE:= $(patsubst $(ASM_DIR)/%-new.s, $(BUILD_DIR)/%.o,$(wildcard $(ASM_DIR)/*-new.s))