slipstream
slipstream copied to clipboard
Nudging the compiler to auto-vectorize things
While many algorithms can get by with only arithmetic operations, as soon as things get more complex, the need to move things across vector lanes or from vector to vector...
It seems processors don't have direct support for computing trigonometry functions like `sin` or `cos`, neither in scalar nor vector form. Standard libraries/libm supplies the scalar versions. Therefore, the way...
Hey so a person directed me to your post, which is related to what ive been working on recently. I thought I'd leave a comment about some additional SIMD stuff...
One of the other SIMD instruction sets that you may want to consider is RISC-V's vector extension, because it takes a totally different approach than most other common ISAs: it...