This Project contains the Java implementation of sample Graph analytical algorithms like SSSP, PageRank, e.t.c.
Algorithms | Property Graph-sequential | Property Graph-sequential | Simple Graph-sequential | Simple Graph-sequential |
---|---|---|---|---|
SSSP | propertry-sssp-sequential | propertry-sssp-parallel | simple-sssp-sequentail | simple-sssp-parallel |
PageRank | propertry-pr-sequential | propertry-pr-parallel | simple-pr-sequentail | simple-pr-parallel |
WCC | propertry-wcc-sequential | propertry-wcc-parallel | simple-wcc-sequentail | simple-wcc-parallel |
BFS | propertry-bfs-sequential | propertry-bfs-parallel | simple-bfs-sequentail | simple-bfs-parallel |
Traverse | propertry-traverse-sequential | propertry-traverse-parallel | simple-traverse-sequentail | simple-traverse-parallel |
You need to install grape-jdk
first.
git clone https://github.com/alibaba/GraphScope.git
cd analytical_engine/java/grape-jdk
mvn clean install
Then build this project with
mvn clean package