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
We should address the issue discovered by having large arrays being passed from one node to another. The issue is that numpy arrays have an attribute nbytes which is an integer describing how many bytes are in the array. When nbytes is greater than a C int (2**31 - 1), MPI errors, as it cannot convert the number.
The text was updated successfully, but these errors were encountered:
We should address the issue discovered by having large arrays being passed from one node to another. The issue is that numpy arrays have an attribute
nbytes
which is an integer describing how many bytes are in the array. Whennbytes
is greater than a C int (2**31 - 1), MPI errors, as it cannot convert the number.The text was updated successfully, but these errors were encountered: