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

Generic var templates for operators and std::iterator_trait var/fvar specialization #1525

Merged
merged 39 commits into from
Feb 3, 2020
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
8309363
Adds std iterator_traits specialization for fvar and var. The var ope…
SteveBronder Dec 18, 2019
bd9b20c
cleanup the template names
SteveBronder Dec 18, 2019
f8f2e3a
[Jenkins] auto-formatting by clang-format version 5.0.2-svn328729-1~e…
stan-buildbot Dec 18, 2019
8806331
cleanup the unary var templates
SteveBronder Dec 18, 2019
a6b4d81
cleanup the unary var templates
SteveBronder Dec 18, 2019
3868acf
[Jenkins] auto-formatting by clang-format version 5.0.2-svn328729-1~e…
stan-buildbot Dec 18, 2019
5e07ef9
replace var_or_fvar_t with autodiff_t in require_generics tests
SteveBronder Dec 18, 2019
119a7e7
[Jenkins] auto-formatting by clang-format version 6.0.0 (tags/google/…
stan-buildbot Dec 18, 2019
1348dda
remove template from ostream for var
SteveBronder Dec 18, 2019
858e1f2
Merge branch 'cleanup/generic-templates-var' of github.com:stan-dev/m…
SteveBronder Dec 18, 2019
ec6345a
fix order of members in kinsoldata
SteveBronder Dec 18, 2019
4300497
revert beta-binomial changes
SteveBronder Dec 20, 2019
fd35443
Fixup template order for core var impls
SteveBronder Dec 24, 2019
73181b4
Merge commit 'cb961050fd2bb013cc658eb8e3eafaa6bdf1cf38' into HEAD
yashikno Dec 24, 2019
36777ab
[Jenkins] auto-formatting by clang-format version 5.0.0-3~16.04.1 (ta…
stan-buildbot Dec 24, 2019
ad62f4f
Moves cmath var and fvar stuff over to prim and uses initlializer bra…
SteveBronder Dec 30, 2019
fd2a4a8
Merge commit '65aec14f5caea8b9e38a7475afcd4a6681648497' into HEAD
yashikno Dec 30, 2019
930329d
[Jenkins] auto-formatting by clang-format version 5.0.2-svn328729-1~e…
stan-buildbot Dec 30, 2019
6185370
put back the namespace call for exp in gp_periodic_cov and remove sta…
SteveBronder Dec 30, 2019
12ec611
Merge branch 'cleanup/generic-templates-var' of github.com:stan-dev/m…
SteveBronder Dec 30, 2019
88c86e8
merge to develop
SteveBronder Dec 30, 2019
5564039
merge to develop
SteveBronder Dec 31, 2019
a694d1a
Merge branch 'develop' into cleanup/generic-templates-var
SteveBronder Jan 3, 2020
5740cd4
Merge remote-tracking branch 'origin/develop' into cleanup/generic-te…
SteveBronder Jan 5, 2020
4cba532
Merge remote-tracking branch 'origin/develop' into cleanup/generic-te…
SteveBronder Jan 5, 2020
30ee8c9
Remove Var&& arguments for const var& arguments in rev/core
SteveBronder Jan 6, 2020
1a565b6
[Jenkins] auto-formatting by clang-format version 5.0.0-3~16.04.1 (ta…
stan-buildbot Jan 6, 2020
75eaf43
merge to develop
SteveBronder Jan 13, 2020
1342d33
Merge branch 'develop' of https://github.com/stan-dev/math into clean…
Jan 21, 2020
3604151
split cmath.hpp into files w. unit tests
Jan 22, 2020
9eebaa7
fix isnan tests to call right fun
Jan 22, 2020
993ceaa
testing pass by value for var ops instead of by reference
SteveBronder Jan 25, 2020
cd60021
Merge branch 'cleanup/pass-var-by-value', remote-tracking branch 'ori…
SteveBronder Jan 25, 2020
ced2df7
Merge branch 'cleanup/generic-templates-var' of github.com:stan-dev/m…
SteveBronder Jan 25, 2020
8d460ac
Merge commit 'c0d2265f842a1b2df04855fac49d87e9962aa878' into HEAD
yashikno Jan 25, 2020
2795719
[Jenkins] auto-formatting by clang-format version 6.0.0 (tags/google/…
stan-buildbot Jan 25, 2020
99a916b
Merge branch 'develop' of https://github.com/stan-dev/math into clean…
Jan 29, 2020
84f5b26
Merge branch 'develop' of https://github.com/stan-dev/math into clean…
Jan 31, 2020
06ad089
templated var overloads for pow
Jan 31, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix order of members in kinsoldata
  • Loading branch information
SteveBronder committed Dec 18, 2019
commit ec6345a0770dd9dd839678684b6e256cadfc1126
8 changes: 4 additions & 4 deletions stan/math/rev/mat/functor/algebra_solver_fp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ struct KinsolFixedPointEnv {
: f_(f),
y_dummy(),
y_(y),
N_(x.size()),
M_(y.size()),
x_r_(x_r),
x_i_(x_i),
msgs_(msgs),
N_(x.size()),
M_(y.size()),
SteveBronder marked this conversation as resolved.
Show resolved Hide resolved
mem_(KINCreate()),
nv_x_(N_VNew_Serial(N_)),
nv_u_scal_(N_VNew_Serial(N_)),
Expand All @@ -98,11 +98,11 @@ struct KinsolFixedPointEnv {
: f_(f),
y_dummy(stan::math::value_of(y)),
y_(y_dummy),
N_(x.size()),
M_(y.size()),
x_r_(x_r),
x_i_(x_i),
msgs_(msgs),
N_(x.size()),
M_(y.size()),
mem_(KINCreate()),
nv_x_(N_VNew_Serial(N_)),
nv_u_scal_(N_VNew_Serial(N_)),
Expand Down