Anyone have a better article addressing the question in the title? This one felt more like a grab bag of basic terminology with a little bit of history thrown in - less how they work and more of how to compare specs of related cards.<p>As an aside, untextured polygons is making a huge comback as an art style. I can't think of it even having been common in early era of GPU's like the article suggests. I personally really like the look but it could end up over used just like other lofi styles. Strangely it's referred to as "low poly" even though the defining feature is lack of textures and often the poly count is fairly high, it's just not hidden from view.
It's quite misleading to call GPU's SIMD lanes "cores" and then compare the core count to actual CPU cores (that have SIMD as well).<p>In fact it's often mentioned that the reason GPUs are fast is that they have "a lot of dumb cores". It's true, but that's somewhat unrelated to the SIMD width.<p>One of the big reason why you can get away with dumb cores is that since you have so many independent threads (actual threads with independent PC), you can go with super-wide SMT (up to say 64 instead of 2 for intel HT).<p>This way you keep a deep pipeline full cheaply (by issuing from each thread in turn), while a CPU has to scramble and spend power/area to do so (branch pred., OoO, ...). Well, I guess the huge register files are not quite cheap but still.<p>The barrel processor style is to me a way more defining characteristic of GPU vs CPU design than the SIMD capabilities.<p>Then of course, wide SIMD on top of that is good for flops.