SIMD
RU: SIMD
A CPU instruction-set feature that applies one operation to multiple data elements packed into a wide vector register in a single clock cycle. SSE operates on 128-bit vectors; AVX/AVX2 on 256-bit; AVX-512 on 512-bit. Compilers auto-vectorise tight loops when data are contiguous and loop-carried dependencies are absent.