The affinity tag has no wiki summary.
19
votes
3answers
5k views
CPU Affinity
Is there a progamatic method to set CPU affinity for a process in c/c++ for the linux operating system.
17
votes
4answers
13k views
how to set CPU affinity of a particular pthread?
I'd like to specify the cpu-affinity of a particular pthread. All the references I've found so far deal with setting the cpu-affinity of a process (pid_t) not a thread (pthread_t). I tried some ...
8
votes
8answers
14k views
How to set processor affinity on an executable in Windows XP?
I have a quad core system with third party application that once in a while spins several processes (always the same executable but several instances of it) and takes 100% of CPU time. I also have a ...
7
votes
3answers
6k views
how to set CPU affinity of a program?
I have a program written in C#, I am using VSTS 2008 + .Net 3.5 + Windows Vista Enterprise x86 to develop a Windows Forms application.
My current computer is dual-core CPU, I want to set CPU affinity ...
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 ...
7
votes
2answers
280 views
What could cause my program to not use all cores after a while?
I have written a program that captures and displays video from three video cards. For every frame I spawn a thread that compresses the frame to Jpeg and then puts it in queue for writing to disk. I ...
5
votes
2answers
5k views
What is the difference between pthread_self() and gettid()? Which one should I use?
I'm trying to set the CPU affinity of threads on Linux. I'd like to know which one of the following approaches is recommended:
Get thread id using pthread_self()
Set CPU affinity using ...
5
votes
1answer
415 views
Disable hyperthreading vs. changing ProcessorAffinity?
I have noticed that several of my multi-threaded calculations run faster if I disable hyper-threading in the BIOS.
I have also learnt that I can programmatically disable the (logical) CPU:s by ...
4
votes
3answers
18k views
How to set processor affinity from Batch File for Windows XP?
I've got a dual processor machine and I would like to launch an executable via a batch file on both processors.
For example:
(1) Launch Notepad.exe on Processor 1, and
(2) Simultaneously, ...
4
votes
3answers
1k views
One core exclusively for my process [duplicate]
Possible Duplicate:
how to set CPU affinity of a particular pthread?
Is there a way in Linux to disable one core for all processes except one process? I would like to have one core reserved ...
4
votes
1answer
6k views
Set affinity with start /AFFINITY command on Windows 7
I am using the start /AFFINITY [n] [.exe] command to start an executable with the specified affinity. I have a system with 8 processors (1,2,3,4,5,6,7,8). I'd like to set the process to use all of ...
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 ...
4
votes
1answer
450 views
Why does NextValue call of performanceCounter change thread affinity mask
I have a C# project, where I have to both access the current workload of my processor, and ensure, that I run some specific code on every kernel of the processor. My problem is, that accessing the ...
3
votes
5answers
488 views
Why is it that restricting multithreaded applications to one core make it run faster?
I have a native multithreaded Win32 application written in C++ which has about 3 relatively busy threads and 4 to 6 threads that don't do that much. When it runs in a normal mode total CPU usage adds ...
3
votes
2answers
927 views
How to use sched_getaffinity(2) and sched_setaffinity(2) . Please give code sample to use in C program
I am trying to
Run 16 copies concurrently with processor pinning (2 copies per core)
Run 8 copies concurrently with processor pinning (2 copies per core) and flipping processor core to the furthest ...
3
votes
2answers
362 views
Set processor affinity for MATLAB engine (Windows 7)
I'm developing an application in c++. One of the components of the application uses Matlab (via the Matlab engine) for data processing. At the same time, a data acquisition system is streaming data to ...
3
votes
3answers
106 views
Why would you need to know about each processor in particular? [closed]
I'm curious to understand what could be the motivation behind the fine-grained detail of each virtual processor that the Windows 8 task manager seems to be focusing on.
Here's a screenshot (from ...
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. ...
3
votes
1answer
483 views
Do the changes to cpumask using sched_setaffinity() take place immediately
I am writing a linux kernel module that needs to pin two threads on two different cpus. I am planning to use sched_setaffinity() after exporting it in the kernel. Is there any other exported function ...
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 ...
2
votes
3answers
303 views
Is there a way to set thread affinity to a processor core with the boost thread library?
And would it be a good idea to do so if I needed the processor cores running on 100% for a dozen seconds or would I get better performance if I let the system decide how to handle the threads?
What I ...
2
votes
2answers
1k views
setting processor affinity with C++ that will run on Linux [duplicate]
Possible Duplicate:
CPU Affinity
I'm running on Linux and I want to write a C++ program that will set 2 specific processors that my 2 applications that will run in parallel (i.e. setting ...
2
votes
2answers
185 views
To set the affinity of CPUs using C#
I have created a window application in C#.Now I want to set the CPU affinity for this application.I may have 2 processors,4 processors,8 processors or may be more than 8 processors.
I want to set the ...
2
votes
1answer
70 views
Process affinity in Windows Phone
I WP library project, I am trying to bind the heavy-lifting process to the hardware thread (0 or 1). So the app consuming the library use other available core.
Can we set process affinity in Windows ...
2
votes
1answer
310 views
Get process and thread affinity mask on Linux
On Windows, there exists the GetProcessAffinityMask API call, and there also exists a roundabout way of finding the thread affinity mask, seen here:
Query thread (not process) processor affinity?
Is ...
2
votes
1answer
197 views
Cpu affinity inherited by child process
I have a server process that forks many child processes, server process has affinity to cpu core, i don't want that affinity to be inherited by child process (rather os should handle where to run ...
2
votes
3answers
631 views
Benchmarking processor affinity impact
I'm working on a NUMA architecture, where each compute node has 2 sockets and 4 cores by socket, for a total of 8 cores by compute node, and 24GB of RAM by node. I have to proof that setting processor ...
2
votes
2answers
733 views
WF4 Affinity on Windows Azure and other NLB environments
I'm using Windows Azure and WF4 and my workflow service is hosted in a web-role (with N instances). My job now is find out how
to do an affinity, in a way that I can send messages to the right ...
2
votes
1answer
299 views
Linux CPU affinity for all system processes
Is there a way to set all system processes other than my own process' threads to their own CPU without manually setting each pid.
I am using C on Fedora and would like to set this on program start ...
2
votes
1answer
144 views
How to build/mantain an affinity score between 2 users?
I mean analyzing 2 users profiles I get a score that it is reciprocal
a.affinity(b) == b.affinity(a)
I'd like to know in particular:
which schema would u use to implement the affinity table
which ...
2
votes
1answer
1k views
Setting process affinity in kernel mode
How can the CPU affinity of a process be set in kernel module? In user mode there is a syscall sched_setaffinity, but I am looking for the kernel mode equivalent.
In the Linux kernel code, there is ...
2
votes
1answer
66 views
Pin processor CPU Isolation on Windows
In linux where I work mostly, we use a technique called CPU isolation, that effectively locks a process on to a processor and also prevents the processor from running anything else. Our kernel guys ...
2
votes
0answers
60 views
How do I set CPU affinity while running a C code from Eclipse in Ubuntu?
I am able to do this from terminal using 'taskset -c 0 ./out'.
How can I do the same from Eclipse?
2
votes
1answer
97 views
VB.net Process Affinity
Goal: My goal is to set all running processes's affinity to 1 core. Then launch a program with the affinity of all the cores.
Skill Lvl: My skill level in programming in general is pretty much ...
2
votes
1answer
292 views
Set Java Multithreading Affinity
I'm using IntelliJ with the ForkJoin framework, and am trying to benchmark two versions of my code. One is using forkjoin, one is sequential. Unfortunately, it seems that the JDK/Windows ...
1
vote
2answers
3k 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
2answers
313 views
SethreadAffinityMask() correct usage?
I have 1500 threads..I want them to run on 12 processors...
To do that I call
SetThreadAffinityMask(GetCurrentThread(),1<<(threadnum%numprocessors)); where numprocessors=12.
Is that correct ...
1
vote
2answers
129 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
2answers
616 views
assign two MPI processes per core
How do I assign 2 MPI processes per core?
For example, if I do mpirun -np 4 ./application then it should use 2 physical cores to run 4 MPI processes (2 processes per core). I am using Open MPI 1.6. I ...
1
vote
2answers
145 views
Linux cpu_affinity guarenteed single use
Can setting the cpu affinity in linux for a multithreaded program where each thread runs on each core effectively block any other process from being scheduled by the os on that core. Effectively I ...
1
vote
4answers
606 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 ...
1
vote
1answer
255 views
Set thread processor affinity in Microsoft .Net
(Posting this with answer because I couldn't find a full explanation of how to do this anywhere, so I thought it might have some value for someone)
How can I set the processor affinity of a ...
1
vote
2answers
614 views
How can I programatically set the affinity of all running processes in WIndows 7?
Is there any way to set the affinity for all running processes in Windows 7?
I want to run some hyperthreading benchmarks, and I want to ensure that they're running alone on a certain core. I'm ...
1
vote
2answers
1k views
setting cpu affinity for linux kernel, not process [closed]
I am having a hard time finding information about how to set cpu affinity for linux kernel (with all of its loaded modules), NOT for a specific process.
This is because I want the kernel to run on ...
1
vote
5answers
227 views
These days, what are good reasons for setting thread affinity rather than leaving it to the OS?
Searching answers here for "thread affinity", I see a lot of interest in doing it but little justification for it save possibly getting stable QueryPerformanceTimer results.
Assuming a modern OS and ...
1
vote
3answers
153 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
2answers
420 views
How can I change the default processor affinity in Linux?
I want to run a number of benchmarks on a multi-core system running Linux. I want to reserve one of the cores for my benchmarks. I know that I can use sched_setaffinity to limit my benchmarks to ...
1
vote
1answer
259 views
How does a cpumask affect scheduling of other processes in the linux kernel?
I'm using a linux 2.6.x kernel on my machine which has ubuntu installed (Ubuntu is just mentioned in case this changes anything). The kernel runs on a machine that has 8 cores. The machine also runs ...
1
vote
1answer
296 views
How to find the thread affinity in Linux other than using the affinity mask?
We have an embedded MIPS 2-core processor running SMP Linux (2.6.18).
We are planning to assign the affinity of the main GUI threads to one of the two cores, and the other core used for driver/data ...
1
vote
2answers
651 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 ...