-
Notifications
You must be signed in to change notification settings - Fork 430
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
Move rand_pcg
to rngs
repository
#1139
Comments
I agree that |
Just looked at moving
|
I see. I think our best option is to embed the PCG implementation, or leave it as it is. |
About emscripten: It looks like they fixed 128-bit integer support according to emscripten-core/emscripten-fastcomp#169? |
Yes. Either is fine IMO.
So we can test using |
Now that we no longer have a special case for emscripten, I agree that we have the following options:
Option 2 implies significantly more churn than the others, but I don't see any other problems. |
Option (3) is the least effort. Is there a good reason not to leave it here? |
I think we can follow (3) for now and open a low-priority issue for porting tests from |
Thanks for the input, I opened #1185 in favor of this issue. |
rand_pcg
is no longer used forSmallRng
, therefore it may be moved to therust-random/rngs
repository. This does not affect the API, only the repository and the issue tracker.This will result in a bit of churn, but I think it's good to move unused code from the
rust-random/rand
repository.We might also want to move
rand_hc
, which is currently only relevant for emscripten targets, because they lacku128
support. Maybe this was fixed in the meanwhile?The text was updated successfully, but these errors were encountered: