diff options
Diffstat (limited to 'Microbenchmarks/STREAM/Makefile')
-rw-r--r-- | Microbenchmarks/STREAM/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Microbenchmarks/STREAM/Makefile b/Microbenchmarks/STREAM/Makefile index 067e7f9..af3c47e 100644 --- a/Microbenchmarks/STREAM/Makefile +++ b/Microbenchmarks/STREAM/Makefile @@ -5,13 +5,18 @@ T ?= uint64_t OP ?= copy MEM ?= MRAM UNROLL ?= 1 +WITH_ALLOC_OVERHEAD ?= 0 +WITH_LOAD_OVERHEAD ?= 0 +WITH_FREE_OVERHEAD ?= 0 +WITH_DPUINFO ?= 0 +SDK_SINGLETHREADED ?= 0 DPU_SOURCES = dpu/${OP}.c HOST_SOURCES = $(wildcard host/*.c) COMMON_INCLUDES = support COMMON_FLAGS = -Wall -Wextra -O2 -I${COMMON_INCLUDES} -DNR_DPUS=${NR_DPUS} -DNR_TASKLETS=${NR_TASKLETS} -DBL=${BL} -DT=${T} -D${OP} -D${MEM} -DUNROLL=${UNROLL} -HOST_FLAGS = ${COMMON_FLAGS} -std=c11 `dpu-pkg-config --cflags --libs dpu` +HOST_FLAGS = ${COMMON_FLAGS} -std=c11 `dpu-pkg-config --cflags --libs dpu` -DWITH_ALLOC_OVERHEAD=${WITH_ALLOC_OVERHEAD} -DWITH_LOAD_OVERHEAD=${WITH_LOAD_OVERHEAD} -DWITH_FREE_OVERHEAD=${WITH_FREE_OVERHEAD} -DWITH_DPUINFO=${WITH_DPUINFO} -DSDK_SINGLETHREADED=${SDK_SINGLETHREADED} DPU_FLAGS = ${COMMON_FLAGS} -flto QUIET = @ |