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

adds reduce_sum and tests #1813

Merged
merged 50 commits into from
Apr 8, 2020
Merged

adds reduce_sum and tests #1813

merged 50 commits into from
Apr 8, 2020

Commits on Mar 31, 2020

  1. Configuration menu
    Copy the full SHA
    7fe241e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec78eb6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    65e6526 View commit details
    Browse the repository at this point in the history
  4. cpplint

    SteveBronder committed Mar 31, 2020
    Configuration menu
    Copy the full SHA
    928898b View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2020

  1. Configuration menu
    Copy the full SHA
    9d48fab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c554db8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c3795da View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    07991a5 View commit details
    Browse the repository at this point in the history
  5. cpplint

    SteveBronder committed Apr 1, 2020
    Configuration menu
    Copy the full SHA
    c0ff21d View commit details
    Browse the repository at this point in the history
  6. Add header includes

    SteveBronder committed Apr 1, 2020
    Configuration menu
    Copy the full SHA
    92e5686 View commit details
    Browse the repository at this point in the history
  7. reduce_sum headers

    SteveBronder committed Apr 1, 2020
    Configuration menu
    Copy the full SHA
    acf754e View commit details
    Browse the repository at this point in the history
  8. header stuff

    SteveBronder committed Apr 1, 2020
    Configuration menu
    Copy the full SHA
    df6ab63 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6723026 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2020

  1. split test files

    rok-cesnovar committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    bc7d174 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc9e120 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c9105b9 View commit details
    Browse the repository at this point in the history
  4. newline

    rok-cesnovar committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    a6ae88c View commit details
    Browse the repository at this point in the history
  5. [Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…

    …4.1 (tags/RELEASE_600/final)
    stan-buildbot committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    6f68ab7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8e94437 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    faf4914 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    065a61d View commit details
    Browse the repository at this point in the history
  9. Merge branch 'feature/reduce_sum' of https://github.com/stan-dev/math

    …into feature/reduce_sum
    bbbales2 committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    a4a00a9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    198f70f View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2020

  1. fix test name

    SteveBronder committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    27fb3d1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    88913c7 View commit details
    Browse the repository at this point in the history
  3. Added tests for threading. Moved generic reduce_sum implementation to…

    … make it harder to accidentally remove rev/prim versions (Issue #1815)
    bbbales2 committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    ace0bbb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dbff2f3 View commit details
    Browse the repository at this point in the history
  5. [Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…

    …4.1 (tags/RELEASE_600/final)
    stan-buildbot committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    560c293 View commit details
    Browse the repository at this point in the history
  6. Shuffled reduce_sum test utils includes to avoid including mix into p…

    …rim and rev tests. Added fwd reduce_sum header (Issue #1815)
    bbbales2 committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    04e412b View commit details
    Browse the repository at this point in the history
  7. Merge branch 'feature/reduce_sum' of https://github.com/stan-dev/math

    …into feature/reduce_sum
    bbbales2 committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    f83cda5 View commit details
    Browse the repository at this point in the history
  8. [Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…

    …4.1 (tags/RELEASE_600/final)
    stan-buildbot committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    63e7a35 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    128c10e View commit details
    Browse the repository at this point in the history
  10. Merge branch 'feature/reduce_sum' of https://github.com/stan-dev/math

    …into feature/reduce_sum
    bbbales2 committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    ecb3d6b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9301d9e View commit details
    Browse the repository at this point in the history
  12. [Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…

    …4.1 (tags/RELEASE_600/final)
    stan-buildbot committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    38f1141 View commit details
    Browse the repository at this point in the history
  13. Made it so that if reduce_sum_static is called without STAN_THREADS i…

    …t just computes everything in one ReduceFunction call (Issue #1815)
    bbbales2 committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    fe7007a View commit details
    Browse the repository at this point in the history
  14. Merge branch 'feature/reduce_sum' of https://github.com/stan-dev/math

    …into feature/reduce_sum
    bbbales2 committed Apr 3, 2020
    Configuration menu
    Copy the full SHA
    22861a5 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2020

  1. Configuration menu
    Copy the full SHA
    4c68c63 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1fed7f8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e10b626 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2020

  1. Configuration menu
    Copy the full SHA
    7f76760 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2658e80 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7f893d5 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'feature/reduce_sum' of https://github.com/stan-dev/math

    …into feature/reduce_sum
    bbbales2 committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    870be5a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ccee1f1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5bd7f91 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ad02fdf View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    dcfffc5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2ea9a7b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8d8ebd1 View commit details
    Browse the repository at this point in the history