[flagged]
" Please don't sneer, including at the rest of the community. " It's reliably a marker of bad comments and worse threads. https://news.ycombinator.com/newsguidelines.html
Everyone should know SIMD
261–263 of 263 posts
Re: Everyone should know SIMD
#262The vast majority of developers have 0 need for learning SIMD. Why mislead them, and make them feel like to be a "real" developer they have to know it?
Re: Everyone should know SIMD
#263I'd slightly rephrase the title to "everyone should know when SIMD didn't happen." Modern compliers are extremely good at vectorization until they suddenly aren't, an they'll often fall back to scalar code because if assumptions or a single-data dependent branch. Learning to check the compliers optimization reports is arguably more valuable.
> Learning to check the compliers optimization reports is arguably more valuable Where do I start? I want to trust the compiler, but I don't always have time to feed every little piece into compiler explorer and interpret it. Is there a higher-level workflow?