PageRank
#
Problem Specification#
Input, an undirected graph.
#
Output, a mapping from each vertex to its PageRank value after a single iteration of PageRank.
#
Algorithm ImplementationsOur PageRank algorithm terminates once the norm of the differences between PageRank values between iterations is below . The algorithm that we implement is an extension of the implementation of PageRank described in Ligra. More details about our implementation can be found in Section 6.5 of [1].
The code for our implemenation is available here.
#
Cost BoundsThe algorithm runs in work and depth for a single iteration of PageRank.
#
Compiling and RunningThe benchmark can be compiled by running:
It can then be run on a test input graph in the uncompressed format as follows:
It can then be run on a test input graph in the compressed format as follows:
#
References[1] Laxman Dhulipala, Guy Blelloch, and Julian Shun
Theoretically Efficient Parallel Graph Algorithms Can Be Fast and Scalable
Proceedings of the ACM Symposium on Parallelism in Algorithms and Architectures (SPAA), pp. 393-404, 2018.