pandeyshubham25 / pagerank

0 stars 0 forks source link

Spmv #11

Closed NMerz closed 2 years ago

pandeyshubham25 commented 2 years ago

have completed the implementation for COO SPMV, also added a piece of code to verify base ranks with other and compute RMSE

NMerz commented 2 years ago

Added CSR support. Tested vs serial on a couple tiny graphs:

Example1 (click to expand) ``` 0 0 0 1 1 1 1 2 2 0 3 3 ```
Example2 (click to expand) ``` 0 0 0 1 0 3 1 1 1 2 2 0 2 3 3 3 ```
pandeyshubham25 commented 2 years ago

Made a couple of minor changes - 1) Need your help with adding a few more descriptions in Readme.md, have added "@Nathan" in the file where you can fill in more content. 2) Got rid of prank_trivial_parallel file and copied the content to prank_parallel file instead 3) prank_serial used to take num_iters as first argument, changed to to only take the args relevant to it