Replies: 1 comment 3 replies
-
There are no high level libraries like Numpy in Mojo yet, the closest is NDBuffer but it's very low level and doesn't own it's data. For some examples on how to use it check this: https://mojodojo.dev/guides/std/Buffer/NDBuffer.html |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wan to have the functionality of ndarray in numpy. I found that there has no such things in mojo. If I want to develop a NDArray in mojo which one is prefered: SIMD or NDBuffer? According to my knowledge: SIMD is 1D array but has operation (such as +, *, broadcast) override function. NDBuffer is nD array but lack operation override function. Please give me some advice.
Beta Was this translation helpful? Give feedback.
All reactions