-
Notifications
You must be signed in to change notification settings - Fork 199
Rewrite of the library #336
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
Merged
Merged
Conversation
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
…/NumSharp into unmanaged-bytes-storage
- Revamped np.random.shuffle - Changed np.random.permutation to use np.random.shuffle
- Added support for NDArray.ToString() when Shape is sliced.
- Added more TODO!
- Added support for Cast-copy which casts src and writes to dst. - Shape.Clone performs deep clone by default.
…unmanaged-bytes-storage
…unmanaged-bytes-storage
…s, np.zeros and their like methods
…unmanaged-bytes-storage
…ast, Revamped MakeGeneric - Revamped np.ravel - removed IStorage.AsArray - Added UnmanagedStorage.Cast - Revamped MakeGeneric and added changes to NDArray<T> - Made int->Shape to explicit cast.
…/NumSharp into unmanaged-bytes-storage
This was referenced Aug 6, 2019
Closed
Closed
Closed
Closed
Closed
Closed
Closed
Closed
Closed
Closed
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.
Most of the library (>95%) has been rewritten within over 350 commits in course of 2 months.
Bold key features:
nd["-1, ::2"]["1::3, :, 0"]
)nd[0,1]
when shape is(3,3,3,3)
) would return a copy when now it returns a reference (alias).https://www.nuget.org/packages/NumSharp/0.11.0-alpha2
In the following week I'll publish articles about the changes and the backend of NumSharp.
Thanks to @henon for collaborating with me on slicing and broadcasting and to @Oceania2018 for the full support.