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
Numpy always uses | for types where endianness is arbitrary. (these are: |b1, |u1, |i1, and |Sn and |Vn for any n). That makes it impossible to serialize these types from numpy and read them into rust, because the npy crate always expects <.
The text was updated successfully, but these errors were encountered:
ExpHP
linked a pull request
Jun 4, 2019
that will
close
this issue
Try the following:
and look at the npy file:
Numpy always uses
|
for types where endianness is arbitrary. (these are:|b1
,|u1
,|i1
, and|Sn
and|Vn
for anyn
). That makes it impossible to serialize these types from numpy and read them into rust, because thenpy
crate always expects<
.The text was updated successfully, but these errors were encountered: