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

Add many graph generators to nx-cugraph #3954

Merged
merged 23 commits into from
Oct 31, 2023

Commits on Oct 24, 2023

  1. Add a few (mostly "classic") graph generators to nx-cugraph

    Also, better handle dtypes for edge values passed to pylibcugraph,
    which only takes float32 and float64 atm.
    eriknw committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    b4fb8df View commit details
    Browse the repository at this point in the history
  2. Add 24 more generators

    eriknw committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    5365700 View commit details
    Browse the repository at this point in the history
  3. Add complete_bipartite_graph

    eriknw committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    03623a9 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Allow node values to be numpy arrays or cupy arrays

    Currently, node values aren't used for any values, the only thing they
    are used for is converting to and from networkx, which we do just fine.
    eriknw committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    13c8a6c View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Configuration menu
    Copy the full SHA
    98e87a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e657ec4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9e45109 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. Configuration menu
    Copy the full SHA
    a12e92a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0305b35 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d28edde View commit details
    Browse the repository at this point in the history
  4. Better, I think

    eriknw committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    f9bd011 View commit details
    Browse the repository at this point in the history
  5. Better commented

    eriknw committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    33f19ee View commit details
    Browse the repository at this point in the history
  6. Add from_scipy_sparse_array

    eriknw committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    1166b5d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    834fd5b View commit details
    Browse the repository at this point in the history
  8. Add from_pandas_edgelist

    eriknw committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    49f0839 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    07dd4e7 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    36ffccf View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. Configuration menu
    Copy the full SHA
    bfed89f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a43d5e7 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Configuration menu
    Copy the full SHA
    f410ba5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    299c415 View commit details
    Browse the repository at this point in the history
  3. Fix to support networkx 3.2.1

    eriknw committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    1916489 View commit details
    Browse the repository at this point in the history
  4. Add tadpole_graph generator

    eriknw committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    85e2cd8 View commit details
    Browse the repository at this point in the history