cugraph
cugraph copied to clipboard
cuGraph - RAPIDS Graph Analytics Library
Upgrades the PyG dependency to 2.5. Required since we will be adding features in 24.06 that require PyG 2.5.
Fixes a broken link https://github.com/rapidsai/cugraph-ops/blob/branch-23.04/README.md -> https://github.com/rapidsai/cugraph/blob/branch-24.04/readme_pages/cugraph_ops.md
Issue https://github.com/rapidsai/cugraph/issues/4178 to add `nx_cugraph.shortest_path` is closed, but the current implementation does not handle negative edge weights. This issue is for tracking progress on supporting negative edge weights. Changes are...
Implement C++ biased sampling including C++ tests.
Create an algorithm/function to look up src/dst vertex ids from an edge id. ```[tasklist] ### Tasks - [ ] https://github.com/rapidsai/cugraph/issues/4306 - [ ] https://github.com/rapidsai/cugraph/issues/4307 - [ ] https://github.com/rapidsai/cugraph/issues/4308 ```
Restructure to pass stream instead of handle and synchronize appropriately. Closes #4236
Reimplements the WG feature store for PyG using the `FeatureStore` interface. Merge after #4384 Closes rapidsai/wholegraph#47
Very briefly discussed this with @dantegd and @aschaffer - cuDF and cuML are migrating towards supporting [nvtx ](https://developer.nvidia.com/blog/cuda-pro-tip-generate-custom-application-profile-timelines-nvtx/) in both [C++ and Python](https://developer.nvidia.com/blog/nvidia-tools-extension-api-nvtx-annotation-tool-for-profiling-code-in-python-and-c-c/) code. This should allow us to get...
**Describe the solution you'd like** Testing on tiny graphs often reveals corner cases (e.g. in multi-GPU execution, some graph partitions may have 0 vertices/edges) and also quick to test and...