You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conversions which take ownership of Rust data and transfer it over to Python use the IntoPyArray trait.
It basically supports Vec<T>, Box<[T]> and Array<T, D> where T is any of the supported element types.
If this ties in with PyO3/pyo3#4058, I could image adding support for Mmap reinterpreted as [T] to turn this into a one-dimensional NumPy array without copying which you can then reshape into the final form without copying via the usual NumPy API.
I find https://docs.rs/numpy/latest/numpy/array/struct.PyArray.html#method.from_slice
by it copy the memory.
The text was updated successfully, but these errors were encountered: