-
Notifications
You must be signed in to change notification settings - Fork 15
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
New additions and fixed typos #91
New additions and fixed typos #91
Conversation
merging recent updates
I have one suggestion on the name of the function: use
|
@forFudan Yes, you are right, I forgot to make that change. I will change it in the PR. |
merging changes from random module and ndarray constructors.
merging changes after PR#98
… `width` and function parameters to `simd_width`
Draft status and failing tests on Linux
merging changes from PR#101, 102
504b9dd
into
Mojo-Numerics-and-Algorithms-group:experimental
Magic 🪄 is here! Added .lock and .toml files with magic, the new modular package manager. Some useful tasks that are available are
magic run final
- This command runs tests, performs formatting and packages NuMojo. This is useful before making the final commit to ensure everything works.magic run test
- This command runs test, packages NuMojo.magic run format
- This command does the same asmojo format ./
magic run package
- This command does the same asmojo package numojo
some functions such as sort, flatten are done inplace for internal methods so that we have the following,
Added some other basic functions such as diagflat, tri, trace etc.
Added Transpose
T()
method to transpose inplace (support only 2D arrays for now)