Mettle

vectorizedThe loop became a SIMD kernel

Reported by --explain after a verdict.

mettle explain vectorized

The whole loop now runs as vector instructions, several elements per step. The remark names the kernel and the width, for example vfmadd231ps, 8-wide float32, so you can check that the width matches the element type you meant to use.

Related