Skip to content

Commit

Permalink
Increase problem size. Enable streaming source for ICC.
Browse files Browse the repository at this point in the history
  • Loading branch information
moebiusband73 committed Oct 12, 2020
1 parent 14cbb92 commit 064453b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions config.mk
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion include_ICC.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 064453b

Please sign in to comment.