-
Notifications
You must be signed in to change notification settings - Fork 81
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
packed_simd versus portable-simd? (This one is now std::simd!) #170
Comments
The intent is to move to portable-simd. It's "soon" going to be in the standard library in Nightly even. packed_simd is the legacy API that is no longer developed. |
Ok so I guess I should stick to portable-simd. Thanks! |
This crate is now no longer truly a crate: It is a module in nightly, and can be used via #![feature(portable_simd)]
use std::simd::f32x4; |
@workingjubilee Congrats! I wonder whether it is useable in production environments? (despite the name "nightly" - since I know sometimes a nightly feature is quite stable) |
I would suggest against it, but I don't think it would be any worse than using packed_simd. The API is subject to change, though. |
...Yeah uh... I appreciate your vote of confidence, but I would Probably Not. 😄 |
Thank you! |
Hi thanks for the Rust language and the two libraries! I wonder which one should I use now? They seems to have similar features and one even links to the other.
The text was updated successfully, but these errors were encountered: