diff options
Diffstat (limited to 'SpMV/Makefile')
-rw-r--r-- | SpMV/Makefile | 50 |
1 files changed, 27 insertions, 23 deletions
diff --git a/SpMV/Makefile b/SpMV/Makefile index 0e7a70c..c2d9d50 100644 --- a/SpMV/Makefile +++ b/SpMV/Makefile @@ -1,21 +1,31 @@ NR_TASKLETS ?= 16 NR_DPUS ?= 1 -COMMON_INCLUDES := support -HOST_SOURCES := $(wildcard host/*.c) -DPU_SOURCES := $(wildcard dpu/*.c) -CPU_BASE_SOURCES := $(wildcard baselines/cpu/*.c) -GPU_BASE_SOURCES := $(wildcard baselines/gpu/*.cu) - -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} +aspectc ?= 0 +aspectc_timing ?= 0 +dfatool_timing ?= 1 + +HOST_CC := ${CC} + +COMMON_FLAGS := -Wall -Wextra -g -Iinclude +HOST_FLAGS := ${COMMON_FLAGS} -O3 `dpu-pkg-config --cflags --libs dpu` -DNR_TASKLETS=${NR_TASKLETS} -DNR_DPUS=${NR_DPUS} -DASPECTC=${aspectc} -DDFATOOL_TIMING=${dfatool_timing} DPU_FLAGS := ${COMMON_FLAGS} -O2 -DNR_TASKLETS=${NR_TASKLETS} -CPU_BASE_FLAGS := -O3 -fopenmp -GPU_BASE_FLAGS := -O3 + +ifeq (${aspectc_timing}, 1) + ASPECTC_HOST_FLAGS += -ainclude/dfatool_host_dpu.ah -ainclude/dfatool_host.ah +endif + +ASPECTC_HOST_FLAGS ?= -a0 + +ifeq (${aspectc}, 1) + HOST_CC = ag++ -r repo.acp -v 0 ${ASPECTC_HOST_FLAGS} --c_compiler ${UPMEM_HOME}/bin/clang++ -p . --Xcompiler +else + HOST_FLAGS += -std=c11 +endif QUIET = @ -ifdef verbose +ifeq (${verbose}, 1) QUIET = endif @@ -24,19 +34,13 @@ all: bin/host_code bin/dpu_code bin: ${QUIET}mkdir -p bin -gpu: bin/gpu_baseline - -bin/host_code: ${HOST_SOURCES} ${COMMON_INCLUDES} bin - ${QUIET}${CC} -o $@ ${HOST_SOURCES} ${HOST_FLAGS} - -bin/dpu_code: ${DPU_SOURCES} ${COMMON_INCLUDES} bin - ${QUIET}dpu-upmem-dpurte-clang ${DPU_FLAGS} -o $@ ${DPU_SOURCES} - -bin/cpu_baseline: ${CPU_BASE_SOURCES} - ${QUIET}${CC} -o $@ ${CPU_BASE_SOURCES} ${CPU_BASE_FLAGS} +bin/host_code: host/app.c include bin + ${QUIET}cp ../include/dfatool_host_dpu.ah include + ${QUIET}${HOST_CC} -o $@ host/app.c ${HOST_FLAGS} + ${QUIET}rm -f include/dfatool_host_dpu.ah -bin/gpu_baseline: ${GPU_BASE_SOURCES} - ${QUIET}nvcc -o $@ ${GPU_BASE_SOURCES} ${GPU_BASE_FLAGS} +bin/dpu_code: dpu/task.c include bin + ${QUIET}dpu-upmem-dpurte-clang ${DPU_FLAGS} -o $@ dpu/task.c clean: ${QUIET}rm -rf bin |