Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 448 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 448 Bytes

PageRank

PageRank serial and parallel implementation

This code is written in C. It implements the pageRank algorithm and solves the linear problem of Ax=B using serial Power method, serial Gauss-Seidel method and parallel Gauss-Seidel method.

The tool used for the parallelization is openMP.

For the part of pagerank, a pseudo-network is constructed that resembles to the real internet problem.

Only the linear system is solved in parallel.