With a single physical processor, which is hyperthreaded into two logical processors, how much CPU-internal hardware (adders, shifters, etc) is duplicated for the logical processors?

I know they share the CPU caches and they must have separate in-flight instruction tables - but what about the other CPU-internal resources?

Is a hyperthread the minimal set of hardware to permit another thread, or is it a maximal set (e.g. a second core, barring caches)?

link|improve this question

62% accept rate
What's the specific application? What problem are you trying to solve? Or is this just random curiosity? – Cody Gray Apr 27 '11 at 10:51
@Cody: non-random curiosity. There was another question someone asked, where I was going to make a comment about hyperthreading, and then I realised I didn't know if a hyperthread was a minimal or maximal hardware set. Also, I'm interested in this stuff. – Blank Xavier Apr 27 '11 at 10:54
2  
For Hyperthreading(TM), only the registers are replicated, everything else (including cache) is either shared or "partitioned" (which is a more hip word for "obscurely shared") AMD's bulldozer architecture replicates the entire integer unit execution block, but from what I understand they seem to be selling a hyperthread core as a real core in return (not 100% sure about that, the info is contradicting, the net performance claims are inconclusive too, ranging from "1.3 cores" over "1.5 cores" to "slighly less than 2 cores", depending what article you read). – Damon Apr 27 '11 at 11:14
@Damon: wot, even the in-flight instruction table is shared??! – Blank Xavier Apr 27 '11 at 11:25
1  
Intel HyperThreading is the minimal set of hardware to permit another thread to run, definitely not a second core, but a logical one. This second logical core does not have resources like FPU or SIMD unit. Only 5% of the die is replicated for HyperThreading. EDIT: The Intel website has an article and some papers from 2002 on HyperThreading. – Chris O Apr 27 '11 at 12:14
show 2 more comments
feedback

closed as off topic by Mitch Wheat, Will Apr 27 '11 at 14:55

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

Browse other questions tagged or ask your own question.