0
votes
1answer
60 views
How can I determine programmatically whether on multi-core, hyperthreading or multi-processor?
I know how to get the processor type, perhaps that's the only way, but I'm actually looking for a way to determine from an application whether it's running on a multi-core processor or on a …
0
votes
1answer
38 views
CPU Numbering on a hypertheading enabled system
Hi,
I am trying to find out how an OS (Windows, linux) assigns numbers to logical cpus in a Hyper threading enabled environment. ?
Does both the OSs first serially assign numbers to the Physical …
1
vote
2answers
87 views
SSE and hyper threading
Are SSE registers shared or duplicated between logical processors (hyper threading) ?
Can I expect the same kind of speedup from parallelization for a SSE heavy program as for a normal program (Intel …
2
votes
5answers
580 views
What is a CPU thread and how is it related to logical threads in code?
I have been seeing in the literature for some of the newer CPU's such as the Intel Xeon "Nehalem-EX" as having 8 cores and 16 threads. What are they talking about here? I saw mention of this in …
1
vote
1answer
103 views
Hyper-Threading programming languages
What languages can hyper-threading be implemented in? Is it only part of Object Oriented systems or can it be implemented in C?
Thanks.
9
votes
4answers
923 views
multi-CPU, multi-core and hyper-thread
Could anyone recommend me some documents to illustrate their differences please? I am always confused about the differents between multi-CPU, multi-core and hyper-thread, and pros/cons of each …
1
vote
8answers
413 views
How do I tell if the machine my program is running on uses hyperthreading? (C#)
I have some code that needs to know how many actual cores are available on my particular machine, and whether or not Hyperthreading is enabled.
Is there a way to do this in C#?
Update: The machines …
5
votes
14answers
639 views
Does hyperthreading lead to unstable systems?
I'm building a PC with the new Intel I7 quad core processor. With hyperthreading turned on it will report 8 cores in Task Manager.
Some of my colleagues are saying that hyperthreading will make the …
7
votes
6answers
757 views
Multicore + Hyperthreading - how are threads distributed?
I was reading a review of the new Intel Atom 330, where they noted that Task Manager shows 4 cores - two physical cores, plus two more simulated by Hyperthreading.
Suppose you have a program with two …
