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
{{ message }}
This repository has been archived by the owner on Jan 2, 2021. It is now read-only.
Hey,
this is a super useful package!
I needed to increase the speed of the code and set num_threads = -1 (any number other than 1 will break the code).
In bootstrap.py in line 272: "for seed in _np.random.randint(0, 232 - 1, num_threads):" will break as it exceeds the max signed int. If you change it to 231 - 1 it will work fine.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
what about this issue? Is this software still maintained by someone?
Just asking because I like to use software that is maintained and fixes bugs when reported.
Thanks
Philip
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey,
this is a super useful package!
I needed to increase the speed of the code and set num_threads = -1 (any number other than 1 will break the code).
In bootstrap.py in line 272: "for seed in _np.random.randint(0, 232 - 1, num_threads):" will break as it exceeds the max signed int. If you change it to 231 - 1 it will work fine.
Thanks!
The text was updated successfully, but these errors were encountered: