|
|
|
|
|
by gspr
133 days ago
|
|
With `u32` as the element type, rustc 1.93 (with `-O`) does the correct thing for size=1, checks both elements separately (i.e. worse than in the article) for size=2, checks all three elements separately (i.e. not being crazy like in the article) for size=3, and starts doing SIMD at size=4. https://godbolt.org/z/5PETM5bbn |
|