From 064453b9f9d938e67e0efb30edd812c957c91e93 Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Mon, 12 Oct 2020 07:37:53 +0200 Subject: [PATCH] Increase problem size. Enable streaming source for ICC. --- config.mk | 6 +++--- include_ICC.mk | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config.mk b/config.mk index 78cc540..b4fcf2c 100644 --- a/config.mk +++ b/config.mk @@ -1,10 +1,10 @@ # Supported: GCC, CLANG, ICC -TAG ?= GCC -ENABLE_OPENMP ?= false +TAG ?= ICC +ENABLE_OPENMP ?= true ENABLE_LIKWID ?= false #Feature options -OPTIONS = -DSIZE=40000000ull +OPTIONS = -DSIZE=120000000ull OPTIONS += -DNTIMES=10 OPTIONS += -DARRAY_ALIGNMENT=64 #OPTIONS += -DVERBOSE_AFFINITY diff --git a/include_ICC.mk b/include_ICC.mk index 210e0c3..bc19bc8 100644 --- a/include_ICC.mk +++ b/include_ICC.mk @@ -6,7 +6,7 @@ ifeq ($(ENABLE_OPENMP),true) OPENMP = -qopenmp endif -CFLAGS = -qopt-report -Ofast -xHost -std=c99 -ffreestanding $(OPENMP) +CFLAGS = -Ofast -xHost -qopt-streaming-stores=always -std=c99 -ffreestanding $(OPENMP) LFLAGS = $(OPENMP) DEFINES = -D_GNU_SOURCE INCLUDES =