bugfix/issue-17 fvar specialization fix for trace_quad_form#19
Merged
bugfix/issue-17 fvar specialization fix for trace_quad_form#19
Conversation
Contributor
|
Refer to this link for build results (access rights to CI server needed): |
new instantiations of trace_quad_form
Member
|
@rtrangucci, I'm going to reindent the code, which will kick off tests once more. If it passes, we'll get it in. |
Contributor
Author
|
Sounds good! Rob
|
Member
|
Jenkins, retest this please. |
syclik
added a commit
that referenced
this pull request
Jul 27, 2015
…d_form Fixes #17. bugfix/issue-17 fvar specialization fix for trace_quad_form
yizhang-yiz
referenced
this pull request
in yizhang-yiz/math
Feb 27, 2018
comment out Marker() function in Torsten to avoid global variable.
bbbales2
added a commit
that referenced
this pull request
May 6, 2020
bbbales2
added a commit
that referenced
this pull request
May 9, 2020
bbbales2
added a commit
that referenced
this pull request
May 11, 2020
bbbales2
added a commit
that referenced
this pull request
May 25, 2020
…h speed of old code (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
May 25, 2020
bbbales2
added a commit
that referenced
this pull request
May 25, 2020
bbbales2
added a commit
that referenced
this pull request
May 25, 2020
bbbales2
added a commit
that referenced
this pull request
May 25, 2020
bbbales2
added a commit
that referenced
this pull request
May 28, 2020
sensitivity in error analysis and include optional relative and absolute error tolerances of sensitivities (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
Jun 1, 2020
Changed ode_rk45 error behavior to match cvodes_integrator-based ODEs (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
Jun 16, 2020
bbbales2
added a commit
that referenced
this pull request
Jun 23, 2020
…ed up comments (design doc #19)
bbbales2
added a commit
that referenced
this pull request
Jun 24, 2020
bbbales2
added a commit
that referenced
this pull request
Jun 30, 2020
…ion was called Removed sensitivity tolerance flag (and set to true by default. It was false by default in 2.23 release) (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
Jul 1, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 1, 2020
…djoint stack zeroing, updated default rk45 tolerances, got rid of unnecessary argument tuple, changed how some casts were done, and removed some experimental error tolerance stuff. (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
Jul 2, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 2, 2020
…s for containers of containers (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
Jul 2, 2020
…upled_ode_system (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
Jul 3, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 3, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 4, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 4, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 4, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 6, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 6, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 6, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 6, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 6, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 7, 2020
… ode functions (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
Jul 7, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 8, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 9, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 9, 2020
Made deep_copy_vars do perfect forwarding again. (design-doc #19)
bbbales2
added a commit
that referenced
this pull request
Jul 9, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 9, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 10, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 10, 2020
bbbales2
added a commit
that referenced
this pull request
Jul 24, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary:
Introduces Matrix<double, -1, -1>, Matrix<fvar, -1, -1> specialization of trace_quad_form
Intended Effect:
Admits higher-order autodiff of trace_quad_form for mixed type arguments (e.g. Matrix<double, -1, -1>, Matrix<fvar, -1, -1>). Allows for fvar instantiation of multi_normal_prec_log.
How to Verify:
./runTests.py test/unit/math/mix/mat/fun/trace_quad_form_test.cpp
./runTests.py test/unit/math/fwd/mat/fun/trace_quad_form_test.cpp
These should fail in the current math branch.
Side Effects:
None.
Documentation:
None.
Reviewer Suggestions:
Anyone