summaryrefslogtreecommitdiff
path: root/BFS
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-05-25 11:43:24 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-05-25 11:46:15 +0200
commitc19e9bc81bd9e35e0dab8a15a3c9a83563f0d320 (patch)
tree01a5d8bb7dbfff00cceb1c2ddcdf542cd7e221c4 /BFS
parent7a32507dbe582a55e1be23d173c68bd41f5f6e58 (diff)
BFS: document dfatool keys
Diffstat (limited to 'BFS')
-rw-r--r--BFS/dfatool.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/BFS/dfatool.txt b/BFS/dfatool.txt
new file mode 100644
index 0000000..6a95c66
--- /dev/null
+++ b/BFS/dfatool.txt
@@ -0,0 +1,18 @@
+throughput_cpu_ref: sequential reference implementation
+throughput_cpu_omp: OpenMP implementation provided by Gomez et al.
+throughput_pim: PIM implementation provided by Gomez et al., excluding data transfer and host CPU calculations
+throughput: PIM implementation provided by Gomez et al, entire calculation
+
+n_elements=196608 → data/loc-gowalla_edges.txt
+n_elements=2760448 → data/roadNet-CA.txt
+
+baseline/cpu:
+timer0 → sequential reference implementation
+timer1 → OpenMP implementation
+
+PIM:
+timer0 → transfer graph CPU → DPU
+timer1 → transfer config CPU → DPU
+timer2 → frontier calculations on DPU
+timer3 → retrieve frontier from DPUs, calculate the next one, and send it back
+timer4 → retrieve results from DPUs