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
It would be nice to support creating an array with Fortran layout using write_zeroed_npy. I considered using ndarray::ShapeBuilder for this, but that trait doesn't currently expose enough information about the shape/layout for ndarray-npy to use it. We could add our own trait like ShapeBuilder, but the duplication seems unnecessary. ndarray is planning to overhaul the constructor API anyway, so I plan to wait until that's done and see if we can reuse types/traits from ndarray.
If someone has a need for this feature in the short-term, please comment here.
The text was updated successfully, but these errors were encountered:
It would be nice to support creating an array with Fortran layout using
write_zeroed_npy
. I considered usingndarray::ShapeBuilder
for this, but that trait doesn't currently expose enough information about the shape/layout forndarray-npy
to use it. We could add our own trait likeShapeBuilder
, but the duplication seems unnecessary.ndarray
is planning to overhaul the constructor API anyway, so I plan to wait until that's done and see if we can reuse types/traits fromndarray
.If someone has a need for this feature in the short-term, please comment here.
The text was updated successfully, but these errors were encountered: