faster icon indicating copy to clipboard operation
faster copied to clipboard

SIMD for humans

Results 28 faster issues
Sort by recently updated
recently updated
newest added

From crates.io the documentation link https://docs.adamniederer.com/faster/index.html is not working

Hi thanks for the lib! My usage needs to index into an array based on a value. Shortly speaking, it is doing something like: ``` for x in 0..width {...

Hi thanks for the lib! I wonder does it support NEON(arm) such that it can be used on Android and iOS? Does it need nightly?

Hi, I'm trying to using faster on my project, but I can't seem to build it on my machine. Does not seems to be the problem of rust but the...

Currently the vector size and the SIMD instructions to be used are fixed at compile-time. This is a good first step. It allows me to write an algorithm once, and...

Rayon supports parallel iterators/mapv function to process using multiple threads. How can we integrate with rayon so we can leverage both simd and thread parallel processing?

Hello, I want to check if this crate works with avx 512 instructions. And also if they recommend to use it, due to the inactivity of it. Are there other...

Hi Adam, Your library uses stdsimd as a external dependency crate, which landed in Rust std awhile ago. It also uses an old target_feature attribute syntax that compiler complains about....