Tagged Questions
16
votes
8answers
4k 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 ...
8
votes
5answers
435 views
Dual-Core Hyperthreading: Should I use 4 threads or 3 or 2?
If you're spawning multiple threads (or processes) concurrently, is it better to spawn as many as the number of physical processors or the number of logical processors, assuming the task is CPU-bound? ...
7
votes
5answers
18k 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 ...
4
votes
1answer
279 views
FP-intensive hyperthreading performance on latest Xeons
We have recently purchased a dual Intel X5650 workstation to run a floating-point intensive simulation, under Ubuntu 10.04.
Each X5650 has 6 cores, so there are 12 cores in total. The code is ...
0
votes
2answers
110 views
JVM + Linux + Intel's Hyperthreading =
I noticed that JVM threads run as processes under Linux for some reasons (correct me if I'm wrong). Furthermore, it is a fact that Intel's Hyperthreading provides additional parallelization only for ...
0
votes
1answer
121 views
Indy Sockets gradually slows down on hyper threaded machines
This is a long shot but maybe someone has an idea. I am using IndySockets, a library that extends .Net sockets classes in a multithreaded (20-25 threads) web crawling application. The app is run on a ...
0
votes
0answers
207 views
Explain how intel Hyper Threading technology works? [closed]
I want to know how intel hyper thread technology works i.e how multiple threads are running simultineously.....
0
votes
1answer
274 views
Testing on a single-core PC with hyperthreading
If a multithreaded program runs safe on a single-core CPU with hyperthreading, will it also run safe on a dual-core CPU with hyperthreading? Concerning thread-safety etc.
EDIT
Ok, I try to be more ...