Tagged Questions
1
vote
2answers
136 views
Obtaining thread Core affinity in C++ 11 through pthreads
I'm trying to set core affinity (Thread #1 goes on first core, Thread #2 goes on second core, ...) while using std::thread in C++ 11.
I've already searched around various topics and on the internet ...
1
vote
3answers
156 views
Pros and Cons of CPU affinity
Suppose I have a multi-threaded application (say ~40 threads) running on a multiprocessor system (say 8 cores) with Linux as the operating system where different threads are more essentially LWP ...
1
vote
4answers
618 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
2answers
391 views
How to enforce CPU Socket affinity?
I know that there are ways to enforce thread/process effinity to bind a perticular thread/process to a cpu/core in various OSs. I am just wondering if there is a way to enforce the CPU Socket ...
1
vote
2answers
652 views
Is it possible to prevent children inheriting the CPU/core affinity of the parent?
I'm particularly interesting in doing this on Linux, regarding Java programs. There are already a few questions that say you have no control from Java, and some RFEs closed by Sun/Oracle.
If you have ...
4
votes
4answers
1k views
Code for detecting APIC id returns same ids for different logical processors
I run my NT service on an Intel Core2 based Win2k3 machine where I need to iterate through all logical CPUs (all bits in process affinity). To do so I call GetProcessAffinityMask() to retrieve the ...
3
votes
2answers
722 views
Setting affinity in multicore x86 processors
( I ask because it was before serious SMP and multicore that I studied OS. I like to have some vision of how code is being executed. )
If I have a multicore x86 CPU booting directly into my program. ...
7
votes
3answers
1k views
Why would one CPU core run slower than the others?
I was benchmarking a large scientific application, and found it would sometimes run 10% slower given the same inputs. After much searching, I found the the slowdown only occurred when it was running ...
2
votes
3answers
2k views
Mapping logical processors to physical processors
On a dual quad-core GetProcessAffinityMask (or the dialog from "Set affinity" in taskman.exe) will report eight logical processors. How do I find out which logical processor is on which physical ...