summaryrefslogtreecommitdiff
path: root/TRNS/baselines/cpu/Makefile
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-07-17 16:13:24 +0200
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-07-17 16:13:24 +0200
commit6e923c56e0881ab1faa7eaec078cd25782786fd6 (patch)
tree0196190ad41e91fc56a1a43c290ab4052ce35102 /TRNS/baselines/cpu/Makefile
parentdb1cd145998ea88037f7dc427e06d3f82c0b4930 (diff)
TRNS baseline: Add NUMA_MEMCPY support
Diffstat (limited to 'TRNS/baselines/cpu/Makefile')
-rw-r--r--TRNS/baselines/cpu/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/TRNS/baselines/cpu/Makefile b/TRNS/baselines/cpu/Makefile
index a5a1635..236f7bb 100644
--- a/TRNS/baselines/cpu/Makefile
+++ b/TRNS/baselines/cpu/Makefile
@@ -33,6 +33,7 @@
#
NUMA ?= 0
+NUMA_MEMCPY ?= 0
FLAGS =
ifeq (${NUMA}, 1)
@@ -40,7 +41,7 @@ ifeq (${NUMA}, 1)
endif
CXX=g++
-CXX_FLAGS=-std=c++11 -Wall -Wextra -pedantic -DNUMA=${NUMA}
+CXX_FLAGS=-std=c++11 -Wall -Wextra -pedantic -DNUMA=${NUMA} -DNUMA_MEMCPY=${NUMA_MEMCPY}
LIB=-L/usr/lib/ -lm -pthread