Skip to content

Commit 2fe01eb

Browse files
committed
Documentation.
1 parent f332825 commit 2fe01eb

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,29 @@
1-
# sssp
1+
# Essentials of Parallel Graph Analytics
22
Single-Source Shortest Path (SSSP) implementation in modern C++ for 2022 IPDPS workshop on Graphs, Architectures, Programming, and Learning (GrAPL 2022) submission.
3+
4+
## Quick Start Guide
5+
Before building this project, make sure your system/compiler supports **C++20** and **cmake** (see `CMakeLists.txt` for the version).
6+
7+
```bash
8+
git clone https://github.com/owensgroup/sssp.git
9+
cd sssp
10+
mkdir build && cd build
11+
cmake ..
12+
make
13+
bin/sssp ../datasets/chesapeake/chesapeake.mtx
14+
```
15+
16+
## How to Cite
17+
Thank you for citing our work.
18+
```tex
19+
@InProceedings{ Osama:2022:EOP,
20+
author = {Muhammad Osama and Serban D. Porumbescu and John D.
21+
Owens},
22+
title = {Essentials of Parallel Graph Analytics},
23+
booktitle = {Proceedings of the Workshop on Graphs, Architectures,
24+
Programming, and Learning},
25+
year = 2022,
26+
series = {GrAPL 2022},
27+
month = may
28+
}
29+
```

0 commit comments

Comments
 (0)