Skip to content
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

Forward-merge branch-24.02 to branch-24.04 #4138

Merged
merged 1 commit into from
Feb 2, 2024
Merged

Commits on Feb 2, 2024

  1. Removes the networkx_algorithm decorator to all SCC functions to di…

    …sable dispatching to them (#4120)
    
    The current cugraph `strongly_connected_components` is a legacy implementation with known issues, and in most cases should not be used until the cugraph team can provide an update.  
    
    This PR removes the `networkx_algorithm` decorator from all SCC functions to disable dispatching.  Users can still run the SCC functions here by accessing them directly from `nx_cugraph`:
    
    ```python
    >>> import nx_cugraph as nxcg
    >>> nxcg.strongly_connected_components(...)
    ```
    
    Tested by running the `nx_cugraph` tests (`pytest nx_cugraph/tests`) and the NetworkX tests (`run_nx_tests.sh`)
    
    _Note: using the "non-breaking" label since this API was only present in nightlies and never released._
    
    Authors:
      - Rick Ratzel (https://github.com/rlratzel)
      - Brad Rees (https://github.com/BradReesWork)
    
    Approvers:
      - Erik Welch (https://github.com/eriknw)
    
    URL: #4120
    rlratzel authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    acb3add View commit details
    Browse the repository at this point in the history