diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-01-16 08:02:52 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-01-16 08:02:52 +0100 |
commit | f0ec6cec9304ca0dd558cf8ec5777d0bb2da4307 (patch) | |
tree | c6db037237feeab5ee08cb8e31db0e3566d8cd9b | |
parent | 93b903081231e0e3f99207384b30606b8c54e12b (diff) |
BFS: Port NMC version (WiP)
-rw-r--r-- | BFS/Makefile | 5 | ||||
-rw-r--r-- | BFS/host/app.c | 62 | ||||
-rw-r--r-- | BFS/support/params.h | 14 | ||||
-rw-r--r-- | BFS/support/timer.h | 13 |
4 files changed, 69 insertions, 25 deletions
diff --git a/BFS/Makefile b/BFS/Makefile index a4ea69d..d43202f 100644 --- a/BFS/Makefile +++ b/BFS/Makefile @@ -1,12 +1,15 @@ NR_DPUS ?= 1 NR_TASKLETS ?= 16 +WITH_ALLOC_OVERHEAD ?= 0 +WITH_LOAD_OVERHEAD ?= 0 +WITH_FREE_OVERHEAD ?= 0 COMMON_INCLUDES := support HOST_SOURCES := $(wildcard host/*.c) DPU_SOURCES := $(wildcard dpu/*.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} +HOST_FLAGS := ${COMMON_FLAGS} -std=c11 -O3 `dpu-pkg-config --cflags --libs dpu` -DNR_TASKLETS=${NR_TASKLETS} -DNR_DPUS=${NR_DPUS} -DWITH_ALLOC_OVERHEAD=${WITH_ALLOC_OVERHEAD} -DWITH_LOAD_OVERHEAD=${WITH_LOAD_OVERHEAD} -DWITH_FREE_OVERHEAD=${WITH_FREE_OVERHEAD} DPU_FLAGS := ${COMMON_FLAGS} -O2 -DNR_TASKLETS=${NR_TASKLETS} QUIET = @ diff --git a/BFS/host/app.c b/BFS/host/app.c index 54b9cdc..126fb7c 100644 --- a/BFS/host/app.c +++ b/BFS/host/app.c @@ -43,12 +43,35 @@ int main(int argc, char** argv) { double tenergy=0; #endif + printf("WITH_ALLOC_OVERHEAD=%d WITH_LOAD_OVERHEAD=%d WITH_FREE_OVERHEAD=%d\n", WITH_ALLOC_OVERHEAD, WITH_LOAD_OVERHEAD, WITH_FREE_OVERHEAD); + // Allocate DPUs and load binary struct dpu_set_t dpu_set, dpu; - uint32_t numDPUs; + uint32_t numDPUs, numRanks; + +#if WITH_ALLOC_OVERHEAD + startTimer(&timer, 0, 0); +#endif DPU_ASSERT(dpu_alloc(NR_DPUS, NULL, &dpu_set)); +#if WITH_ALLOC_OVERHEAD + stopTimer(&timer, 0); +#else + timer.time[0] = 0; +#endif + +#if WITH_LOAD_OVERHEAD + startTimer(&timer, 1, 0); +#endif DPU_ASSERT(dpu_load(dpu_set, DPU_BINARY, NULL)); +#if WITH_LOAD_OVERHEAD + stopTimer(&timer, 0); +#else + timer.time[1] = 0; +#endif + DPU_ASSERT(dpu_get_nr_dpus(dpu_set, &numDPUs)); + DPU_ASSERT(dpu_get_nr_ranks(dpu_set, &numRanks)); + assert(NR_DPUS == numDPUs); PRINT_INFO(p.verbosity >= 1, "Allocated %d DPU(s)", numDPUs); // Initialize BFS data structures @@ -130,23 +153,23 @@ int main(int argc, char** argv) { // Send data to DPU PRINT_INFO(p.verbosity >= 2, " Copying data to DPU"); - startTimer(&timer, 0, t0ini++); + startTimer(&timer, 2, t0ini++); copyToDPU(dpu, (uint8_t*)dpuNodePtrs_h, dpuNodePtrs_m, (dpuNumNodes + 1)*sizeof(uint32_t)); copyToDPU(dpu, (uint8_t*)dpuNeighborIdxs_h, dpuNeighborIdxs_m, dpuNumNeighbors*sizeof(uint32_t)); copyToDPU(dpu, (uint8_t*)dpuNodeLevel_h, dpuNodeLevel_m, dpuNumNodes*sizeof(uint32_t)); copyToDPU(dpu, (uint8_t*)visited, dpuVisited_m, numNodes/64*sizeof(uint64_t)); copyToDPU(dpu, (uint8_t*)nextFrontier, dpuNextFrontier_m, numNodes/64*sizeof(uint64_t)); // NOTE: No need to copy current frontier because it is written before being read - stopTimer(&timer, 0); + stopTimer(&timer, 2); //loadTime += getElapsedTime(timer); } // Send parameters to DPU PRINT_INFO(p.verbosity >= 2, " Copying parameters to DPU"); - startTimer(&timer, 1, t1ini++); + startTimer(&timer, 2, t1ini++); copyToDPU(dpu, (uint8_t*)&dpuParams[dpuIdx], dpuParams_m[dpuIdx], sizeof(struct DPUParams)); - stopTimer(&timer, 1); + stopTimer(&timer, 2); //loadTime += getElapsedTime(timer); ++dpuIdx; @@ -164,9 +187,9 @@ int main(int argc, char** argv) { #endif // Run all DPUs PRINT_INFO(p.verbosity >= 1, " Booting DPUs"); - startTimer(&timer, 2, t2ini++); + startTimer(&timer, 3, t2ini++); DPU_ASSERT(dpu_launch(dpu_set, DPU_SYNCHRONOUS)); - stopTimer(&timer, 2); + stopTimer(&timer, 3); //dpuTime += getElapsedTime(timer); #if ENERGY DPU_ASSERT(dpu_probe_stop(&probe)); @@ -178,7 +201,7 @@ int main(int argc, char** argv) { // Copy back next frontier from all DPUs and compute their union as the current frontier - startTimer(&timer, 3, t3ini++); + startTimer(&timer, 4, t3ini++); dpuIdx = 0; DPU_FOREACH (dpu_set, dpu) { uint32_t dpuNumNodes = dpuParams[dpuIdx].dpuNumNodes; @@ -218,14 +241,14 @@ int main(int argc, char** argv) { } } } - stopTimer(&timer, 3); + stopTimer(&timer, 4); //hostTime += getElapsedTime(timer); } // Copy back node levels PRINT_INFO(p.verbosity >= 1, "Copying back the result"); - startTimer(&timer, 4, 0); + startTimer(&timer, 5, 0); dpuIdx = 0; DPU_FOREACH (dpu_set, dpu) { uint32_t dpuNumNodes = dpuParams[dpuIdx].dpuNumNodes; @@ -235,7 +258,7 @@ int main(int argc, char** argv) { } ++dpuIdx; } - stopTimer(&timer, 4); + stopTimer(&timer, 5); //retrieveTime += getElapsedTime(timer); //if(p.verbosity == 0) PRINT("CPU-DPU Time(ms): %f DPU Kernel Time (ms): %f Inter-DPU Time (ms): %f DPU-CPU Time (ms): %f", loadTime*1e3, dpuTime*1e3, hostTime*1e3, retrieveTime*1e3); @@ -246,6 +269,7 @@ int main(int argc, char** argv) { setBit(nextFrontier[0], 0); // Initialize frontier to first node nextFrontierEmpty = 0; level = 1; + startTimer(&timer, 6, 0); while(!nextFrontierEmpty) { // Update current frontier and visited list based on the next frontier from the previous iteration for(uint32_t nodeTileIdx = 0; nodeTileIdx < numNodes/64; ++nodeTileIdx) { @@ -285,6 +309,17 @@ int main(int argc, char** argv) { } ++level; } + stopTimer(&timer, 6); + +#if WITH_FREE_OVERHEAD + startTimer(&timer, 7); +#endif + DPU_ASSERT(dpu_free(dpu_set)); +#if WITH_FREE_OVERHEAD + stopTimer(&timer, 7); +#else + timer.time[7] = 0; +#endif // Verify the result PRINT_INFO(p.verbosity >= 1, "Verifying the result"); @@ -297,7 +332,7 @@ int main(int argc, char** argv) { } if (status) { - printf("[::] BFS NMC | n_dpus=%d n_tasklets=%d e_type=%s n_elements=%d " + printf("[::] BFS-UMEM | n_dpus=%d n_ranks=%d n_tasklets=%d e_type=%s n_elements=%d " "| throughput_pim_MBps=%f throughput_MBps=%f", numDPUs, NR_TASKLETS, "uint32_t", numNodes, numNodes * sizeof(uint32_t) / (timer.time[2] + timer.time[3]), @@ -305,7 +340,8 @@ int main(int argc, char** argv) { printf(" throughput_pim_MOpps=%f throughput_MOpps=%f", numNodes / (timer.time[2] + timer.time[3]), numNodes / (timer.time[0] + timer.time[1] + timer.time[2] + timer.time[3] + timer.time[4])); - printAll(&timer, 4); + printf(" latency_alloc_us=%f latency_load_us=%f latency_write_us=%f latency_kernel_us=%f latency_sync_us=%f latency_read_us=%f latency_cpu_us=%f latency_free_us=%f\n", + timer.time[0], timer.time[1], timer.time[2], timer.time[3], timer.time[4], timer.time[5], timer.time[6], timer.time[7]); } // Display DPU Logs diff --git a/BFS/support/params.h b/BFS/support/params.h index f4f12e7..960a0d0 100644 --- a/BFS/support/params.h +++ b/BFS/support/params.h @@ -20,17 +20,29 @@ static void usage() { typedef struct Params { const char* fileName; unsigned int verbosity; +#if NUMA + struct bitmask* bitmask_in; + int numa_node_cpu; +#endif } Params; static struct Params input_params(int argc, char **argv) { struct Params p; p.fileName = "data/roadNet-CA.txt"; p.verbosity = 0; +#if NUMA + p.bitmask_in = NULL; + p.numa_node_cpu = -1; +#endif int opt; - while((opt = getopt(argc, argv, "f:v:h")) >= 0) { + while((opt = getopt(argc, argv, "f:v:hA:C:")) >= 0) { switch(opt) { case 'f': p.fileName = optarg; break; case 'v': p.verbosity = atoi(optarg); break; +#if NUMA + case 'A': p.bitmask_in = numa_parse_nodestring(optarg); break; + case 'C': p.numa_node_cpu = atoi(optarg); break; +#endif case 'h': usage(); exit(0); default: PRINT_ERROR("Unrecognized option!"); diff --git a/BFS/support/timer.h b/BFS/support/timer.h index 80719cf..466ad95 100644 --- a/BFS/support/timer.h +++ b/BFS/support/timer.h @@ -6,9 +6,9 @@ #include <sys/time.h> typedef struct Timer { - struct timeval startTime[5]; - struct timeval stopTime[5]; - double time[5]; + struct timeval startTime[8]; + struct timeval stopTime[8]; + double time[8]; } Timer; static void startTimer(Timer *timer, int i, int rep) { @@ -24,11 +24,4 @@ static void stopTimer(Timer *timer, int i) { (timer->stopTime[i].tv_usec - timer->startTime[i].tv_usec); } -static void printAll(Timer *timer, int maxt) { - for (int i = 0; i <= maxt; i++) { - printf(" timer%d_us=%f", i, timer->time[i]); - } - printf("\n"); -} - #endif |