Hacker News new | ask | show | jobs
by PrayagBhakar 992 days ago
I’ve herd of A64 and SIMD before. What’s SVE? Security Vulnerabilities?
1 comments

Scaleable Vector Extension. A class of SIMD instructions.
Scalable because this one can work in a vector length agnostic way. That is, you can write code that works with 128 bit vectors and also run on a machine with 512 bit vectors without recompilation.
That makes a lot of sense. Thanks for explaining!