Target the higher ISA

Although static analysis presumes the loop may benefit from FMA instructions available with the AVX2 or higher ISA, no FMA instructions executed for this loop. To fix: Use the following compiler options:Note: the compiler options may vary depending on the CPU microarchitecture.
Windows* OSLinux* OS
/QxCORE-AVX2 or /QaxCORE-AVX2-xCORE-AVX2 or -axCORE-AVX2
/QxCOMMON-AVX512 or /QaxCOMMON-AVX512-xCOMMON-AVX512 or -axCOMMON-AVX512

Read More