-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BENCH: put in np.random.seed on vbenches #8144
Comments
Could this just be stuck into |
yes that should work |
👍 |
I am working on that now |
Ok, that looks like already taken care of. There is |
need to remove any randoms from existing benchmarks, and ensure that they still run. E.g. we always want to use a single seed for the entire run (unless for some reason a benchmark uses a very specific seed) |
all of the groupby vbenches need a
np.random.seed(1234)
to make them consistent from run-to-run (where they don't have them now).Possibly should do this on other benches as well.
The text was updated successfully, but these errors were encountered: