cugraph
cugraph copied to clipboard
cuGraph - RAPIDS Graph Analytics Library
This PR updates the unit tests to leverage the datasets API by updating the utils functions. This greatly simplifies the graph creation from an edgelist with a single call `get_edgelist()`...
**Describe the solution you'd like and any additional context** We currently have an outstanding number of `FIXMEs` and it would be nice to have is a tool that can locate...
This PR refactors `k-core` by leveraging the CAPI and updates the python cugraph tests. An MG implementation of k-core is also included in this PR closes #2689
Define k-core C++ API and tests. Closes #2631 Closes #2632 Closes #2633 Closes #2635
This PR updates the way `raft` is imported following changes on the `raft` new conda packages. closes #2727
## Summary * (partially) closes rapidsai/GaaS#23 * Added `SamplingResult` cython extension class that corresponds to the C API's `cugraph_sample_result_t` type, which removes a copy operation in sampling algos. * Added...
Closes #2678 raft updated some k-means logic and dramatically increased the compile time of our spectral clustering implementation. This PR adds an include that will suppress the expansion of templates...
The current cugraph python code still has many places where hardcoded column names are used, sometimes inconsistently (eg. `src`, `dst`, `weight`, `weights`, `wgt`). Other column names from PropertyGraph include those...
This PR fixes https://github.com/rapidsai/graph_dl/issues/27 This PR fixes https://github.com/rapidsai/graph_dl/issues/43 This PR fixes https://github.com/rapidsai/graph_dl/issues/39