2021-03-24 08:43:44 +01:00
|
|
|
# Supported: GCC, CLANG, ICC
|
2021-06-11 09:48:41 +02:00
|
|
|
TAG ?= ICC
|
2021-06-11 09:38:34 +02:00
|
|
|
ENABLE_LIKWID ?= false
|
2021-03-30 22:17:30 +02:00
|
|
|
# SP or DP
|
|
|
|
DATA_TYPE ?= DP
|
|
|
|
# AOS or SOA
|
2021-04-15 14:55:02 +02:00
|
|
|
DATA_LAYOUT ?= AOS
|
2021-03-24 08:43:44 +01:00
|
|
|
|
2021-07-01 20:02:59 +02:00
|
|
|
# Number of times to run the neighbors loop on stubbed variant
|
2021-06-16 00:56:00 +02:00
|
|
|
NEIGHBORS_LOOP_RUNS ?= 1
|
|
|
|
# Explicitly store and load atom types
|
|
|
|
EXPLICIT_TYPES ?= false
|
|
|
|
# Trace memory addresses for cache simulator
|
|
|
|
MEM_TRACER ?= false
|
2021-07-09 23:49:14 +02:00
|
|
|
# Trace indexes and distances for gather-md
|
|
|
|
INDEX_TRACER ?= false
|
|
|
|
# Vector width (elements) for index and distance tracer
|
|
|
|
VECTOR_WIDTH ?= 8
|
2021-06-16 00:56:00 +02:00
|
|
|
|
2021-03-24 08:43:44 +01:00
|
|
|
#Feature options
|
2021-06-11 09:38:34 +02:00
|
|
|
OPTIONS = -DALIGNMENT=64
|
|
|
|
#OPTIONS += More options
|