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 some new sparse methods based on feedback #26280

Merged
merged 5 commits into from
Nov 22, 2024

Commits on Nov 20, 2024

  1. Add some new sparse methods that Rich Vuduc mentioned wanting

    ---
    Signed-off-by: Brad Chamberlain <[email protected]>
    bradcray committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    faf64be View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2024

  1. Merge branch 'main' of https://github.com/chapel-lang/chapel into spa…

    …rse-methods-for-rich
    bradcray committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    1eb368b View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2024

  1. Backing out a change I didn't mean to commit

    ---
    Signed-off-by: Brad Chamberlain <[email protected]>
    bradcray committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    cd7b2ef View commit details
    Browse the repository at this point in the history
  2. Fix a bug I'd overlooked

    In reviewing my PR, Lydia noticed something I hadn't: That the
    coordinates array had some extra entries at the end, due to the fact
    that we use recursive doubling on the nnzDom domain such that it isn't
    always exactly nnz elements large.  Here, I've addressed that by
    resizing the domain to be just the right size before returning the
    references to the coordinates.
    
    ---
    Signed-off-by: Brad Chamberlain <[email protected]>
    bradcray committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    9025912 View commit details
    Browse the repository at this point in the history
  3. Extend test to show data remains correct after continuing to grow domain

    ---
    Signed-off-by: Brad Chamberlain <[email protected]>
    bradcray committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    f45cab6 View commit details
    Browse the repository at this point in the history