Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
3answers
6k 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 ...
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 ...
9
votes
3answers
836 views

Hyper-threading… made my renderer 10 times slower!

Executive summary: How can one specify in his code that OpenMP should only use threads for the REAL cores, i.e. not count the hyper-threading ones? Detailed analysis: Over the years, I've coded a ...
8
votes
5answers
434 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? ...
8
votes
2answers
1k views

Impact of hyperthreading on compiler performance?

Say we want to compile a large project (say GCC or the Linux kernel) as fast as possible. Does a CPU with hyperthreading capability (say an Intel Core i7) run the compiler any faster with ...
7
votes
4answers
5k views

Programatically detect number of physical processors/cores or if hyper-threading is active on Windows, Mac and Linux

I have a multithreaded c++ application that runs on Windows, Mac and a few Linux flavours. To make a long story short: Inorder for it to run at maximum efficiency I have to be able to instantiate a ...
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 ...
5
votes
1answer
888 views

Does GetSystemInfo (on Windows) always return the number of logical processors?

Reading up on this, and specifically reading the Microsoft docs, it looks like it should be returning the number of PHYSICAL processors, and that you should use GetLogicalProcessorInformation to ...
5
votes
15answers
3k 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 ...
4
votes
3answers
90 views

Can two processes simultaneously run on one CPU core?

Can two processes simultaneously run on one CPU core, which has hyper threading? I learn from the Internet. But, I do not see a clear straight answer. Edit: Thanks for discussion and sharing! My ...
4
votes
3answers
1k views

Turning off Hyper-Threading in 6-core Intel Xeon

We got a 12-core MacPro to do some Monte Carlo calculations. Its Intel Xeon processors have Hyper-Threading (HT) enabled, so in fact there should be 24 processes running in parallel to make them fully ...
4
votes
1answer
277 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 ...
3
votes
3answers
87 views

Running simulation with hyperthreading doubles runtime

I use a simulation written in python/numpy/cython. Since i need to average over many simulation runs i use the multiprocessing module to run all the individual simulation runs in batches. At the ...
2
votes
1answer
84 views

Why is a thread's status running but it doesn't use any CPU?

Today I found a very strange problem. I ran Redhat Enterprise Linux 6, and the CPU was Intel E31275 (4 cores, 8 threads). I found one kernel thread (I called it as my_thread) didn't work correctly. ...
2
votes
1answer
152 views

Programmically detect hyperthread-enabled CPU?

How can my win32 app programmically determine if it is running on a machine with CPU with hyperthread technology?
2
votes
4answers
1k views

C/C++/Assembly Programatically detect if hyper-threading is active on Windows, Mac and Linux

I can already correctly detect the number of logical processors correctly on all three of these platforms. To be able to detect the number of physical processors/cores correctly I'll have to detect ...
2
votes
2answers
373 views

CPU Numbering on a hypertheading enabled system

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 CPUs and ...
2
votes
2answers
490 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 ...
1
vote
1answer
66 views

How to find physical and logical core number in a kernel module?

Are there kernel functions in Linux that would return the number of the physical core and logical core (in case of Hyperthreading) on which a kernel module is running ?
1
vote
2answers
307 views

Linux find out Hyper-threaded core id

I spent this morning trying to find out how to determine which processor id is the hyper-threaded core, but without luck. I wish to find out this information and use set_affinity() to bind a process ...
1
vote
3answers
366 views

Visual Studio 2010, Maximum Concurrent C++ Compilations for Hyper-Threaded Processors

I am trying to optimise the compilation time of a large VC++ project. My processor is a Core i7 950 (4 Cores, 8 Threads since it supports Intel Hyper-Threading Technology). In Microsoft Visual Studio ...
1
vote
3answers
188 views

Is hyperthreading working?

I'm running some fairly processor-intensive stuff on my PC, and notice my CPU usage looks pretty odd. My PC is a quad-core i7-870, which supposedly has eight virtual cores. I'm using the Task Parallel ...
1
vote
0answers
71 views

How much hardware duplication exists for hyperthread logical processors? [closed]

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 ...
1
vote
2answers
66 views

I need a short C programm that runs slower on a processor with HyperThreading than on one without it

I want to write a paper with Compiler Optimizations for HyperTreading. First step would be to investigate why a processor with HyperThreading( Simultaneous Multithreading) could lead to poorer ...
1
vote
2answers
1k views

CPU ordering in Linux (with hyper threading)

I'm curious what the CPU ordering is in Linux. Say I bind a thread to cpu0 and another to cpu1 on a hyperthreaded system, are they both going to be on the same physical core. Given a Core i7 920 ...
1
vote
2answers
326 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.
1
vote
8answers
1k 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 ...
0
votes
0answers
82 views

Which is the best processor for mobile emulators like Android and Windows Mobile? [closed]

I am using Intel-i3 processor for android development.Emulator is really sluggish.Let me know whether Android emulators will use the full functionality of hyper threading.Now i am planning to buy a ...
0
votes
2answers
63 views

How can I query the number of physical cores from MATLAB?

Does anyone know of a way to query the number of physical cores from MATLAB? I would specifically like to get the number of physical rather than logical cores (which can differ when hyperthreading 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
3answers
119 views

How to implement affinity on multi-core HT with topological considerations in a C++ program?

I'm developing some C++ multi-core programs with a variable number of threads and I'd like to know how to set a proper (actually "the best") affinity. I use Boost-threads, so I can call ...
0
votes
0answers
82 views

Hyperthreading performance and game servers

I have a hard time finding some hard facts about it, and I can't really run any benchmarks myself, so I figured I'd ask here: Can hyperthreading decrease performance on a machine that runs several ...
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
206 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
273 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 ...
0
votes
1answer
674 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 ...