-
Notifications
You must be signed in to change notification settings - Fork 338
[RELEASE] cugraph v25.10 #5296
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
Merged
Merged
[RELEASE] cugraph v25.10 #5296
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
Forward-merge branch-25.08 into branch-25.10
This PR removes the OS suffix from devcontainers, allowing the upstream devcontainer images to determine the OS version. Contributes to rapidsai/build-planning#200. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Kyle Edwards (https://github.com/KyleFromNVIDIA) URL: #5188
conda-forge is migrating to gcc 14, so this PR is updating for alignment. See rapidsai/build-planning#188 Authors: - Vyas Ramasubramani (https://github.com/vyasr) - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Gil Forsyth (https://github.com/gforsyth) URL: #5124
rapids_config will use `RAPIDS_BRANCH` contents to determine what branch to use Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Brad Rees (https://github.com/BradReesWork) - Bradley Dice (https://github.com/bdice) URL: #5172
Forward-merge branch-25.08 into branch-25.10
Currently has issues with delta values being updated on mismatched vertex indices. In other words, the delta update calculations look correct but they are assigned to indices that are incorrect. This causes the final betweenness centrality scores to deviate more and more across iterations. ![Uploading Screenshot 2025-07-02 at 2.15.19 PM.png…]() Authors: - Howard Huang (https://github.com/HowardHuang1) Approvers: - Seunghwa Kang (https://github.com/seunghwak) - Chuck Hastings (https://github.com/ChuckHastings) URL: #5146
…5195) This is required to handle when we switch RAPIDS branching strategy Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Bradley Dice (https://github.com/bdice) URL: #5195
Forward-merge branch-25.08 into branch-25.10
This PR defines and implements the C API for temporal graph construction. It also defines the API for temporal sampling, but does not provide an implementation. That will be addressed in a subsequent PR. Non-breaking, old applications will still function, but we will ultimately be deprecating some functions (hopefully in 25.10, if not in 25.12). Authors: - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Joseph Nke (https://github.com/jnke2016) - Alex Barghi (https://github.com/alexbarghi-nv) - Seunghwa Kang (https://github.com/seunghwak) URL: #5161
Bumps the version of `actions/labeler` to `@v5` and updates the syntax in the `labeler.yml` file to account for breaking changes in that version bump. xref: rapidsai/ops#2968 Authors: - Gil Forsyth (https://github.com/gforsyth) Approvers: - Bradley Dice (https://github.com/bdice) URL: #5205
Forward-merge branch-25.08 into branch-25.10
Issue: rapidsai/build-planning#207 Authors: - Kyle Edwards (https://github.com/KyleFromNVIDIA) Approvers: - Bradley Dice (https://github.com/bdice) URL: #5211
Forward-merge branch-25.08 into branch-25.10
rapids_config will use a user defined branch over `RAPIDS_BRANCH` contents Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Kyle Edwards (https://github.com/KyleFromNVIDIA) URL: #5218
Standardize compression flags via rapids_cuda_enable_fatbin_compression Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Bradley Dice (https://github.com/bdice) URL: #5222
CCCL has deprecated use of thrust::tuple, this PR eliminates references to `thrust::tuple` and `thrust::make_tuple`. It also eliminates the use of `make_tuple` with `thrust::make_zip_iterator`, as this is no longer required. Authors: - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Seunghwa Kang (https://github.com/seunghwak) URL: #5226
Adds Leiden benchmark
This is an empty commit to trigger a build. It is used when builds get stuck with an old ABI. Rebuilding updates them to the new one.
Update balanced_edge_test to use device_uvector and copies... to mimic other C++ legacy graph tests Closes #5012 Authors: - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Joseph Nke (https://github.com/jnke2016) - Seunghwa Kang (https://github.com/seunghwak) URL: #5262
## Cause A stored cuDF DataFrame was the cause of a recent CI error. At the CugraphHandler (within cugraph-service server) had been assuming that objects needed to be explicitly converted the numpy arrays and an uncaught exception would break the layer of communication between the client/server (hence, why the failures only show up as a `thrift` error). ## Proposed Change Don't numpy what is already a numpy :) ## Reference Re-enables the disabled tests from [this PR](#5265) ## Things to Note - I chose to write a small change since we do not plan on prioritizing support for this feature. If this changes, a more holistic change can be made. - Fixed a handful of double-spaces. Authors: - Ralph Liu (https://github.com/nv-rliu) - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Brad Rees (https://github.com/BradReesWork) - Jake Awe (https://github.com/AyodeAwe) - Kyle Edwards (https://github.com/KyleFromNVIDIA) URL: #5268
Two of the heterogeneous+temporal sampling API calls in `pylibcugraph` use the wrong output parameters. This PR restores the correct parameters that are required for processing heterogeneous graphs. It also fixes a missing comma in a function signature that caused an error when trying to pass the `num_edge_types` parameter. Authors: - Alex Barghi (https://github.com/alexbarghi-nv) - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Brad Rees (https://github.com/BradReesWork) - Chuck Hastings (https://github.com/ChuckHastings) URL: #5267
first step in dropping cugraph-service Authors: - Brad Rees (https://github.com/BradReesWork) Approvers: - Rick Ratzel (https://github.com/rlratzel) URL: #5269
This PR modifies create_graph_from_edgelist to use the new variant arithmetic types as input. There's also a small change to validation of sampling results because the edge weight was not used in one step but was being passed through the validation functions. This is part of the effort to reduce library size and compile time. Change is breaking to the C++ API, the C API and PLC API are preserved. Closes #5239 Authors: - Chuck Hastings (https://github.com/ChuckHastings) - Ralph Liu (https://github.com/nv-rliu) Approvers: - Joseph Nke (https://github.com/jnke2016) - Seunghwa Kang (https://github.com/seunghwak) URL: #5248
…5260) This PR is a continuation of #5213 by @MathisHammel and aims to address issues that were identified in that PR and pay off some technical debt. Some changes: - Add support for passing vertex ids for initial positions, vertex_radius, and mobility. - Add support for passing random_state. - Add support for int64_t vertex/edge types. - Remove support for `callback=` argument in `cugraph.force_atlas2` (it now gives informative error). - Remove `cugraph/layout/force_atlas2_wrapper.pyx` (use PLC instead). - Fix mutating input arrays (we now copy and use `const` in C++). - Fix inputs and result when integral vertex ids weren't contiguous. - For example, if vertices are `[0, 2]`, inputs and result would contain values for `1`. - Fixing renumbering of vertices. This is getting close, only a couple failing tests to investigate, and I should add a new test or two. Authors: - Erik Welch (https://github.com/eriknw) - Mathis HAMMEL (https://github.com/MathisHammel) - Ralph Liu (https://github.com/nv-rliu) Approvers: - Chuck Hastings (https://github.com/ChuckHastings) - Rick Ratzel (https://github.com/rlratzel) URL: #5260
This PR internally matches graph' attribute's types if the type combination is not supported and throws a warning. closes #4587 Authors: - Joseph Nke (https://github.com/jnke2016) - Chuck Hastings (https://github.com/ChuckHastings) - Alex Barghi (https://github.com/alexbarghi-nv) Approvers: - Chuck Hastings (https://github.com/ChuckHastings) - Brad Rees (https://github.com/BradReesWork) URL: #5273
Fixes missed entries like `dask-cuda[cu12]`
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Bug in the C API for graph creation determining whether to upcast edge times.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
❄️ Code freeze for
branch-25.10and v25.10 releaseWhat does this mean?
Only critical/hotfix level issues should be merged into
branch-25.10until release (merging of this PR).What is the purpose of this PR?
branch-25.10intomainfor the release