cugraph
cugraph copied to clipboard
cuGraph - RAPIDS Graph Analytics Library
Follow up from issue #4072. @ChuckHastings, thank you for working on this! I've just tested with version `24.06.00a43`. The issue is resolved completely when the adjacency matrix is `float64`, but...
Follow up to https://github.com/rapidsai/cugraph/pull/4223 and https://github.com/rapidsai/build-planning/issues/26, cugraph tests will fail if a `FutureWarning` or `DeprecationWarning` is raised
### Version 24.06.00a42 ### Which installation method(s) does this occur on? Conda ### Describe the bug. When changing the parameter `random_state` for `cugraph.leiden` the detected clusters are not affected. I...
### How would you describe the priority of this documentation request Medium ### Describe the future/missing documentation It would be great to have a few examples/tutorials on how to generate...
Work that needs to be done to support biased sampling for GNNs. ```[tasklist] ### Tasks - [ ] rapidsai/graph_dl#37 - [ ] rapidsai/graph_dl#36 - [ ] rapidsai/graph_dl#32 - [ ]...
Implement functions to lookup a src/dst vertex id from an edge id. Implementation includes the PLC/C/C++ implementation and all requisite testing. Implementation here can be a naive "iterate over all...
**Describe the solution you'd like** We currently allow edge_t to be either 32 bit integer or 64 bit integer. In the CSR representation of graphs, we use edge_t for the...
As pre-requsites for https://github.com/rapidsai/cugraph/issues/2143 and https://github.com/rapidsai/cugraph/issues/2433, we need a wrapper class to store vertex property values (which can be a simple 1D array without vertex masking, this does not hold...
This might be out side the scope of this bug fix PR, but should we better use `raft::random::RngState`? Using two different random number generation mechanism does not sound ideal. _Originally...