logoalt Hacker News

DeathArrowtoday at 10:58 AM1 replyview on HN

Still, what percentage of software uses AVX512 for its core functionality, so vector performance matters in practice?


Replies

galangalalgoltoday at 11:30 AM

Auto vectorizing optimizers have gotten quite good. If you are using integers it often just happens whether you think about it or not. With floats unless you specify fast math you will need to use wide types to let it know you don't care about floating point addition order.