diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-22 12:24:04 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-22 12:24:04 +0100 |
commit | d7b9186a2a0285356b9aa38b84c8a7a151e48593 (patch) | |
tree | 689aab2d5fd90989b591eb16e665e9bbd3b99f86 /Microbenchmarks/CPU-DPU/Makefile | |
parent | ba4f965bf9b7fb9f7cd441e82f37255e3948b736 (diff) |
CPU-DPU microbenchmark: switch to nanoseconds
Diffstat (limited to 'Microbenchmarks/CPU-DPU/Makefile')
-rw-r--r-- | Microbenchmarks/CPU-DPU/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Microbenchmarks/CPU-DPU/Makefile b/Microbenchmarks/CPU-DPU/Makefile index 697dfcd..f354e67 100644 --- a/Microbenchmarks/CPU-DPU/Makefile +++ b/Microbenchmarks/CPU-DPU/Makefile @@ -8,7 +8,7 @@ COMMON_INCLUDES := support HOST_SOURCES := $(wildcard host/*.c) COMMON_FLAGS := -Wall -Wextra -g -I${COMMON_INCLUDES} -HOST_FLAGS := ${COMMON_FLAGS} -std=c11 -O3 `dpu-pkg-config --cflags --libs dpu` -DNR_TASKLETS=${NR_TASKLETS} -DNR_DPUS=${NR_DPUS} -DBL=${BL} -D${TRANSFER} -DDPU_BINARY=${DPU_BINARY} +HOST_FLAGS := ${COMMON_FLAGS} -D_POSIX_C_SOURCE=200809L -std=c11 -O3 `dpu-pkg-config --cflags --libs dpu` -DNR_TASKLETS=${NR_TASKLETS} -DNR_DPUS=${NR_DPUS} -DBL=${BL} -D${TRANSFER} -DDPU_BINARY=${DPU_BINARY} DPU_FLAGS := ${COMMON_FLAGS} -O2 -DNR_TASKLETS=${NR_TASKLETS} -DBL=${BL} -D${TRANSFER} QUIET = @ |