-
Notifications
You must be signed in to change notification settings - Fork 307
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
Std axis #486
Closed
Closed
Std axis #486
Changes from 41 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
0c83a76
Added function signature.
LukeMathWalker dae4c72
Ignoring stuff
LukeMathWalker 548e431
Added implementation detail in the documentation.
LukeMathWalker 2049e82
Initialized the accumulators.
LukeMathWalker ee88de5
Fixing the initialization.
LukeMathWalker e9b19eb
Completed first implementation.
LukeMathWalker 65343f6
Added a test for var_axis
LukeMathWalker 371490c
remove changes
LukeMathWalker 8beb7fd
Included changes proposed by jturner314
LukeMathWalker 9db3840
Added panic note to the docs. Removed a print in the test.
LukeMathWalker 2f502df
Changed bound to accept only Float values. Refactored initialization …
LukeMathWalker 7482baa
Restoring trailing white spaces.
LukeMathWalker 6383f45
Restoring white spaces
LukeMathWalker e552f9a
Restoring white spaces
LukeMathWalker bb7a22b
Made all required edits to remove ScalarOperand.
LukeMathWalker cdcd25d
Added function signature.
LukeMathWalker 4b507e1
Ignoring stuff
LukeMathWalker fe017f6
Added implementation detail in the documentation.
LukeMathWalker c2bfe85
Initialized the accumulators.
LukeMathWalker 2fabc23
Fixing the initialization.
LukeMathWalker 0b7b289
Completed first implementation.
LukeMathWalker 34387e3
Added a test for var_axis
LukeMathWalker 217ba74
remove changes
LukeMathWalker 3fc4228
Included changes proposed by jturner314
LukeMathWalker 7389720
Added panic note to the docs. Removed a print in the test.
LukeMathWalker d5956b8
Changed bound to accept only Float values. Refactored initialization …
LukeMathWalker d078f76
Restoring trailing white spaces.
LukeMathWalker ef0c02d
Restoring white spaces
LukeMathWalker 2279f49
Restoring white spaces
LukeMathWalker 58091e4
Made all required edits to remove ScalarOperand.
LukeMathWalker 7e52346
Merge branch 'master' of github.com:LukeMathWalker/ndarray
LukeMathWalker 1ef804f
Merge
LukeMathWalker ee7a67a
Merge remote-tracking branch 'upstream/master'
LukeMathWalker a36ecc2
Added stub for standard deviation.
LukeMathWalker c76296c
Implemented std_axis.
LukeMathWalker fc4eba5
Fixed docs.
LukeMathWalker 3b713f3
Added two tests for std_axis.
LukeMathWalker 4f00e79
Added test for std_axis with random array.
LukeMathWalker c1dcdf4
Fixed tests.
LukeMathWalker 930164c
Fixed doc tests.
LukeMathWalker af6be60
Formatting.
LukeMathWalker 989e584
Using mapv_into to avoid extra allocation in std_axis.
LukeMathWalker 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
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.
I'd change the
.mapv
into.mapv_into
to avoid the extra allocation.