remove packed_simd in favor of std::simd and #![feature(portable_simd)]#92
remove packed_simd in favor of std::simd and #![feature(portable_simd)]#92llogiq merged 2 commits intollogiq:masterfrom
packed_simd in favor of std::simd and #![feature(portable_simd)]#92Conversation
Fixes 91 As mentioned in the `packed_simd` README, the crate is superseded by `#![feature(portable_simd)]`.
|
Based on this comment it also seems that |
|
For now, I think we have all the relevant platforms (but riscv, need to get my hands on one of those...), so this isn't that relevant anymore. Still it's good to go with the times, so thank you for your contribution! |
|
Happy to help 😁!
I also noticed that |
|
That would be great. |
This replaces the simd docs that used to reference packed_simd.
|
@llogiq I've updated the docs. Let me know if there are any other changes you'd like to see |
|
No, that looks comprehensive. Thank you! |
Fixes #91
As mentioned in the
packed_simdREADME, the crate is superseded by#![feature(portable_simd)].I'm honestly not familiar with simd or the new
std::simdsupport, but I think I managed to get things working without the use ofpacked_simd(at least from local testing).