Closed ytmimi closed 6 months ago
Based on this comment it also seems that packed_simd
isn't being actively maintained, so that might be another reason to stop using it.
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 😁!
bytecount
is one of rustfmt's dependencies so when I noticed the generic-simd
feature wasn't working on nightly I wanted to try and get it resolved.
I also noticed that packed_simd
is mentioned in the README, would you like me to update those docs as part of this PR too?
That would be great.
@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_simd
README, the crate is superseded by#![feature(portable_simd)]
.I'm honestly not familiar with simd or the new
std::simd
support, but I think I managed to get things working without the use ofpacked_simd
(at least from local testing).