-
-
Notifications
You must be signed in to change notification settings - Fork 189
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
Generalize operator-like functions #1628
Merged
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
84b5ab6
generalized operator-like functions
t4c1 7d7779e
optimize fwd multiply
t4c1 4b50381
Merge commit '10cc6ba675743f09832c6749fbb1a92d74888bd2' into HEAD
yashikno 3c23987
[Jenkins] auto-formatting by clang-format version 6.0.0 (tags/google/…
stan-buildbot 7cd74ef
fixed call sites.
t4c1 8263fdb
fixed a test.
t4c1 fb2de8a
generalized transpose.hpp() input
t4c1 1fedd01
fixed transpose
t4c1 9029b14
[Jenkins] auto-formatting by clang-format version 5.0.2-svn328729-1~e…
stan-buildbot d73d0c8
removed compile time multiplicable requirements
t4c1 45319be
Merge commit '12cbb63adfcfb64440ade29e97a25db30c5ac8e2' into HEAD
yashikno f989b11
fix unnecessary vector to matrix conversions
t4c1 01a87f4
Merge commit '81248fdcd9bbd107f63cf8211333c2acbdbe5ed8' into HEAD
yashikno d34d6fe
[Jenkins] auto-formatting by clang-format version 6.0.0 (tags/google/…
stan-buildbot c68504a
addressed review comments
t4c1 aaa8c17
fix cpplint
t4c1 b98a5a0
[Jenkins] auto-formatting by clang-format version 6.0.0 (tags/google/…
stan-buildbot 9445e07
Merge branch 'generalize_operators' of https://github.com/bstatcomp/m…
t4c1 9180fc6
generalized matrix_exp
t4c1 ed9b73a
Merge branch 'generalize_operators' of https://github.com/bstatcomp/m…
t4c1 f2b4e13
[Jenkins] auto-formatting by clang-format version 6.0.0 (tags/google/…
stan-buildbot d989040
replaced expression return values with matrices.
t4c1 ca27b44
fix dot_product
t4c1 e7d4d53
addressed review comments and generalized dot_product
t4c1 87d205c
Merge commit 'b3dde68ece20db22da4979175c07a4d42ccdc050' into HEAD
yashikno a9490b3
[Jenkins] auto-formatting by clang-format version 6.0.0 (tags/google/…
stan-buildbot c7162fd
added missing include
t4c1 b160720
one more header
t4c1 f88d89a
Merge branch 'develop' into generalize_operators
t4c1 d9284e8
Merge branch 'develop' into generalize_operators
t4c1 cf2b72d
fixed size zero multiply
t4c1 fb619c0
Merge branch 'develop' into generalize_operators
t4c1 5290f6b
fixed multiply templates
t4c1 9529ccc
addressed remaining review comments
t4c1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For these functions is there a reason not to use more generic templates like
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did not intend to include
columns_dot_product
in this PR. This is just a bugfix, that was required for generalization some other functions. Now that functions don't return expressions anymore it is not needed, but I would leave it in.