We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
vec![0u8; 100000].iter().map(|&x| { x as u64 * x as u64 }).sum::<u64>();
is essentially what I'd like to use this crate to SIMD-accelerate.
The issue I'm bumping into is reading the slice as u8x8 such that I can then use <u64x8 as From<u8x8>>::from to cast it.
u8x8
<u64x8 as From<u8x8>>::from
What is the best way to do this currently?
Related to #8, #32 and #46.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
is essentially what I'd like to use this crate to SIMD-accelerate.
The issue I'm bumping into is reading the slice as
u8x8
such that I can then use<u64x8 as From<u8x8>>::from
to cast it.What is the best way to do this currently?
Related to #8, #32 and #46.
The text was updated successfully, but these errors were encountered: