cugraph
cugraph copied to clipboard
cuGraph - RAPIDS Graph Analytics Library
https://github.com/rapidsai/cugraph/blob/bc2242007c4b114733ca32fec68985d38bedddc9/python/pylibcugraph/setup.py#L111 is referencing `"../../thirdparty/cub"` which no longer exists. There may be others, and the `setup.py` files are in need of general cleanup.
Closes #2399 This is ~not yet~ *now* implemented for MG.
I was looking for an efficient way to get all pairs short paths from graphs. According to this [post](https://stackoverflow.com/questions/70632337/how-to-accelerate-finding-all-pairs-shortest-path-with-gpu-using-rapids-cugraph) multi_source_bfs function should work but I'm receiving an error: line 249,...
Enhance BC to support MNMG Code across all libraries - [ ] libcugraph - [ ] libcugraph_c - [ ] pylibcugraph - [ ] cugraph
Enhance Core Number to be MNMG Code across all libraries - [x] libcugraph - [x] libcugraph_c - [ ] pylibcugraph - [ ] cugraph
From #317 : > page rank mostly works but needs some exploration. The email-Eu-core graph requires more iterations to converge. If I raise the number of iterations high enough everything...
When the `email-EU-core.csv` dataset is used in the python triangle counting test (`python/cugraph/tests/test_triangle_count.py`), cugraph and NetX produce a different number of counted triangles and edge vals. A debug print of...
We currently have both the legacy & new experimental graph classes. https://github.com/rapidsai/cugraph/blob/branch-0.16/cpp/include/graph.hpp https://github.com/rapidsai/cugraph/blob/branch-0.16/cpp/include/experimental/graph.hpp The old graph classes need to be replaced to remove redundancy in our code-base. The new graph...
isolated vertices are not being captured properly when initializing a Graph with an adjacency matrix
Isolated vertices are lost when we initialize a Graph using an adj list: ``` >>> nxG = nx.from_numpy_array (np.array([[1,1,0], [1,0,0], [0,0,0]]), create_using=nx.DiGraph) >>> G = cugraph.from_numpy_array(np.array([[1,1,0], [1,0,0], [0,0,0]]), create_using=cugraph.DiGraph) >>>...
**Describe the solution you'd like and any additional context** A user should be able to create a graph from: * SciPy matrix - COO, CSR, CSC, etc * From a...