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
Reading a npy file whose shape larger than 2147483647 (the max value of int),
will crash on cnpy.cpp line 85: shape.push_back(std::stoi(sm[0].str())); stoi should be changed to stoll or stoull.
The text was updated successfully, but these errors were encountered:
Reading a npy file whose shape larger than 2147483647 (the max value of int),
will crash on cnpy.cpp line 85:
shape.push_back(std::stoi(sm[0].str()));
stoi
should be changed tostoll
orstoull
.The text was updated successfully, but these errors were encountered: