-
-
Notifications
You must be signed in to change notification settings - Fork 445
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Standard: Distribution<__m128i> features requirements are undocumented #1410
Comments
Do you have the We seem to have overlooked that in documentation |
To be clear: However, in v0.8.5 |
Distribution<std::arch::x86_64::__m128i>
is not implemented for Standard
"
Is anyone aware of a way to fix the documentation if the |
I hadn't notice the simd_support as I was not expecting nightly features to be needed. This would be the std::simd nightly crate right? Bitwise speaking, does it makes a difference if the Also, looking at `rand/distributions/integer.rs:13:
it seems that the PS: why does integer.rs:118 use |
Yes we are dropping the feature requirement in 0.9 as well as the |
This is about documentation of feature flags. May be affected by #1450. There's still no obvious doc here: |
The above is the expected doc for 0.9: this feature requires x86 or x86-64 but does not require |
Common issues
Problem:
rand::distributions::Standard
for__m128i
Quick solution: do not have one
Details: Using version 0.8.5 and the documentation reports that there is
impl Distribution<__m128i> for Standard
.However the following code
gives the error
What am I doing wrong?
The text was updated successfully, but these errors were encountered: