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
My student @dorimolnar runs Jaxley on Windows and is having issues because the following instantiates a np.int32 array:
importnumpyasnpnp.asarray(0).dtype
On linux and on Mac, this instantiates a np.int64 array. Here, we assume int64. This assumption then causes assertion errors here.
We should try to make this assert more robust to avoid issues on Windows or small laptops which might default to single precision instead of to double precision.
The text was updated successfully, but these errors were encountered:
My student @dorimolnar runs Jaxley on Windows and is having issues because the following instantiates a
np.int32
array:On linux and on Mac, this instantiates a
np.int64
array. Here, we assumeint64
. This assumption then causes assertion errors here.We should try to make this assert more robust to avoid issues on Windows or small laptops which might default to single precision instead of to double precision.
The text was updated successfully, but these errors were encountered: