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

Allow arena_matrix to use move semantics #2928

Merged
merged 73 commits into from
May 31, 2024

Commits on Aug 1, 2023

  1. Configuration menu
    Copy the full SHA
    00a9f43 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. use forwarding in sum

    SteveBronder committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    056e297 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3a6c11e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fa8a464 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3f07884 View commit details
    Browse the repository at this point in the history
  5. newline

    SteveBronder committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    e5e226b View commit details
    Browse the repository at this point in the history
  6. Merge remote-tracking branch 'refs/remotes/origin/feature/reverse-mod…

    …e-move-semantics' into feature/reverse-mode-move-semantics
    SteveBronder committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    d66673b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    53dc399 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fcca84d View commit details
    Browse the repository at this point in the history
  9. Merge remote-tracking branch 'refs/remotes/origin/feature/reverse-mod…

    …e-move-semantics' into feature/reverse-mode-move-semantics
    SteveBronder committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    c13855f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    2f42a0a View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. Configuration menu
    Copy the full SHA
    4189367 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'refs/remotes/origin/feature/reverse-mod…

    …e-move-semantics' into feature/reverse-mode-move-semantics
    SteveBronder committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    b297df5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b76fc8 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. Configuration menu
    Copy the full SHA
    5fbaf55 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1bfd431 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    119099d View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. Configuration menu
    Copy the full SHA
    90b23ab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9ce5c50 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1871c64 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'feature/reverse-mode-move-semantics' of github.com:stan…

    …-dev/math into feature/reverse-mode-move-semantics
    SteveBronder committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    42cef50 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. Configuration menu
    Copy the full SHA
    0ec5253 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2023

  1. Configuration menu
    Copy the full SHA
    d6b892d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    984bdf8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a85e786 View commit details
    Browse the repository at this point in the history
  4. fix typo

    SteveBronder committed Aug 17, 2023
    Configuration menu
    Copy the full SHA
    1b0504a View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. Configuration menu
    Copy the full SHA
    4f926cf View commit details
    Browse the repository at this point in the history
  2. update docs

    SteveBronder committed Jan 3, 2024
    Configuration menu
    Copy the full SHA
    0d34e03 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. merge from develop

    SteveBronder committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    3193ad4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b37d163 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Configuration menu
    Copy the full SHA
    36e0bd3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eb6276c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8acdb6d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    11da0dd View commit details
    Browse the repository at this point in the history
  5. update docs

    SteveBronder committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    8a1f9f0 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. update to develop

    SteveBronder committed Apr 2, 2024
    Configuration menu
    Copy the full SHA
    c29860e View commit details
    Browse the repository at this point in the history
  2. only allow the move operator for arena matrix types if the input type…

    … is the same type as what will be stored in the matrix
    SteveBronder committed Apr 2, 2024
    Configuration menu
    Copy the full SHA
    0707438 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. fixes aos csr matrix bug, still debugging soa matrix bug

    stevebronder committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    8b96c45 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. Configuration menu
    Copy the full SHA
    0a168c3 View commit details
    Browse the repository at this point in the history
  2. update csr matrix multiply to avoid linker error for windows. Adds to…

    …_soa_sparse_matrix for making sparse matrices from csr formatted data
    SteveBronder committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    fec3689 View commit details
    Browse the repository at this point in the history
  3. small fixes

    SteveBronder committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    6b8ae15 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c83cbfc View commit details
    Browse the repository at this point in the history
  5. fix header error

    SteveBronder committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    f594b2c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d1feb19 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    33f0825 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Configuration menu
    Copy the full SHA
    5c5dfc6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2af1cd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b0815c4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    515d621 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a604fa4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6a71cfb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a2124c1 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1e906d9 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    de7d11e View commit details
    Browse the repository at this point in the history
  10. Merge remote-tracking branch 'origin/feature/reverse-mode-move-semant…

    …ics' into feature/reverse-mode-move-semantics
    SteveBronder committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    d89610e View commit details
    Browse the repository at this point in the history
  11. merge

    SteveBronder committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    eee02d8 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c5f983a View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Merge pull request #3048 from stan-dev/fix/csr-matrix-times-vector

    Fix csr_matrix_times_vector linker error
    SteveBronder authored Apr 19, 2024
    Configuration menu
    Copy the full SHA
    86a3e83 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2024

  1. Configuration menu
    Copy the full SHA
    1f25ef7 View commit details
    Browse the repository at this point in the history
  2. Fix path error

    andrjohns committed Apr 21, 2024
    Configuration menu
    Copy the full SHA
    c9f76db View commit details
    Browse the repository at this point in the history
  3. Update comments

    andrjohns committed Apr 21, 2024
    Configuration menu
    Copy the full SHA
    7a5a009 View commit details
    Browse the repository at this point in the history
  4. Document TBB changes

    andrjohns committed Apr 21, 2024
    Configuration menu
    Copy the full SHA
    df305d6 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. Merge pull request #3051 from stan-dev/tbb-winarm64

    Add support for Windows ARM64
    WardBrian authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    08d8a22 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Configuration menu
    Copy the full SHA
    34cf554 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a3a88a5 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    f748825 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    04124da View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Merge pull request #3053 from stan-dev/fix/csr-matrix-seperate-vari

    use a seperate class for csr_matrix adjoint
    SteveBronder authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    9f759e1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    045073f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #3054 from stan-dev/sundials-targets

    Don't set build and clean rules for SUNDIALS if external libs are used
    WardBrian authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    e73651b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7a9601d View commit details
    Browse the repository at this point in the history
  5. update to 5.0

    SteveBronder committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    d45dff2 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. fix docs

    SteveBronder committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    91ea4c1 View commit details
    Browse the repository at this point in the history