-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Future Enhancement Request : Graph Algorthims on CSRGraph #11
Comments
Hey, Since you can access the underlying CSR matrix with For pagerank, you could probably use something like Long run I want to make these things have a simpler API within this package |
Here's an ongoing list of algorithms to implement:
|
I think networkit is fast enough. |
NetworkX is fast since it makes the graph into a sparse matrix before running the algorithm. The problem with networkX is loading the large graph in the first place -- if it's too large you'll run out of RAM very fast. We can just use the |
I have used networkx and networkit. Many algorithms of networkx are operated on the dictionary-like data structure of networkx itself, so the speed is relatively slow, and networkx is not designed to accelerate parallel computing. On the contrary, networkit does this, but Networkit implements fewer graph algorithms than networkx |
I like your idea. I was using Networkx and it just hogs all memory, I was looking for a python graph library for large graphs and I saw this library.
Can future enhancements support Graph Algorithms like Page Rank?
The text was updated successfully, but these errors were encountered: