diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-06-02 16:12:22 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-06-02 16:12:22 +0200 |
commit | 53f3c5bb8fd7698c4c37d5325ebc38e49534c3ba (patch) | |
tree | 0d5620e873d3904673865e91d0b10e5fe9863250 | |
parent | 1beb6e825643638e56126475f05409031eb7c270 (diff) |
VA: add sim benchmark
-rw-r--r-- | VA/Makefile | 6 | ||||
-rwxr-xr-x | VA/benchmark-scripts/ccmcc25-sim.sh | 25 | ||||
-rwxr-xr-x | VA/benchmark-scripts/ccmcc25.sh | 27 |
3 files changed, 45 insertions, 13 deletions
diff --git a/VA/Makefile b/VA/Makefile index e0d392f..a67c600 100644 --- a/VA/Makefile +++ b/VA/Makefile @@ -35,7 +35,7 @@ endif QUIET = @ -ifdef verbose +ifeq (${verbose}, 1) QUIET = endif @@ -45,12 +45,12 @@ bin: ${QUIET}mkdir -p bin # cp/rm are needed to work around AspectC++ not liking symlinks -bin/host_code: ${HOST_SOURCES} ${COMMON_INCLUDES} bin +bin/host_code: ${HOST_SOURCES} include bin ${QUIET}cp ../include/dfatool_host_dpu.ah include ${QUIET}${HOST_CC} -o $@ ${HOST_SOURCES} ${HOST_FLAGS} ${QUIET}rm -f include/dfatool_host_dpu.ah -bin/dpu_code: ${DPU_SOURCES} ${COMMON_INCLUDES} bin +bin/dpu_code: ${DPU_SOURCES} include bin ${QUIET}dpu-upmem-dpurte-clang ${DPU_FLAGS} -o $@ ${DPU_SOURCES} clean: diff --git a/VA/benchmark-scripts/ccmcc25-sim.sh b/VA/benchmark-scripts/ccmcc25-sim.sh new file mode 100755 index 0000000..386cf90 --- /dev/null +++ b/VA/benchmark-scripts/ccmcc25-sim.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +mkdir -p log/$(hostname) + +run_benchmark_nmc() { + local "$@" + set -e + make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 \ + aspectc=1 aspectc_timing=1 dfatool_timing=0 + bin/host_code -w 0 -e 5 -i ${input_size} +} + +export -f run_benchmark_nmc + +fn=log/$(hostname)/ccmcc25-sim + +source ~/lib/local/upmem/upmem-2025.1.0-Linux-x86_64/upmem_env.sh simulator + +echo "prim-benchmarks VA $(git describe --all --long) $(git rev-parse HEAD) $(date -R)" >> ${fn}.txt + +parallel -j1 --eta --joblog ${fn}.joblog --resume --header : \ + run_benchmark_nmc nr_dpus={nr_dpus} nr_tasklets=16 input_size={input_size} \ + ::: nr_dpus 1 2 4 8 16 32 48 64 \ + ::: input_size 327680 655360 1310720 2621440 \ +>> ${fn}.txt diff --git a/VA/benchmark-scripts/ccmcc25.sh b/VA/benchmark-scripts/ccmcc25.sh index ac0e066..f6d441d 100755 --- a/VA/benchmark-scripts/ccmcc25.sh +++ b/VA/benchmark-scripts/ccmcc25.sh @@ -1,24 +1,31 @@ #!/bin/bash mkdir -p log/$(hostname) -fn=log/$(hostname)/ccmcc25 - -source /opt/upmem/upmem-2025.1.0-Linux-x86_64/upmem_env.sh run_benchmark_nmc() { local "$@" set -e sudo limit_ranks_to_numa_node ${numa_rank} make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 \ - dfatool_timing=0 aspectc=1 aspectc_timing=1 + aspectc=1 aspectc_timing=1 dfatool_timing=0 bin/host_code -w 0 -e 50 -i ${input_size} } export -f run_benchmark_nmc -parallel -j1 --eta --joblog ${fn}.joblog --resume --header : \ - run_benchmark_nmc nr_dpus={nr_dpus} nr_tasklets=16 input_size={input_size} numa_rank={numa_rank} \ - ::: numa_rank any \ - ::: nr_dpus 64 128 256 512 768 1024 1536 2048 2304 \ - ::: input_size 83886080 167772160 335544320 671088640 \ ->> ${fn}.txt +for sdk in 2023.2.0 2024.1.0 2024.2.0 2025.1.0; do + + fn=log/$(hostname)/ccmcc25-sdk${sdk} + + source /opt/upmem/upmem-${sdk}-Linux-x86_64/upmem_env.sh + + echo "prim-benchmarks VA $(git describe --all --long) $(git rev-parse HEAD) $(date -R)" >> ${fn}.txt + + parallel -j1 --eta --joblog ${fn}.joblog --resume --header : \ + run_benchmark_nmc nr_dpus={nr_dpus} nr_tasklets=16 input_size={input_size} numa_rank={numa_rank} \ + ::: numa_rank any \ + ::: nr_dpus 64 128 256 512 768 1024 1536 2048 2304 \ + ::: input_size 83886080 167772160 335544320 671088640 \ + >> ${fn}.txt + +done |