How can I set the processor affinity of a process on Linux?

I have used taskset for this. If you have taskset installed, something like:

taskset -cp 0,2 45678

would set the process with id 45678 to have an affinity to cpus 1 and 3.


Inside the process, the call would be sched_setaffinity(), or for pthreads stuff, pthread_setaffinity_np()

On a related note, if you're worrying about CPU affinity of your program, it may be worthwhile to pay attention to how it's doing memory allocation as well. Larger systems with memory attached to more than one controller (i.e. multiple CPU sockets, each with their own) will have variable latency and bandwidth between different CPU-memory pairs. You'll want to look into NUMA affinity as well, using the numactl command or the system calls that it works with. One program I worked on got a 10% performance improvement from this.


You need to install schedutils (Linux scheduler utilities). I have use it on my Ubuntu Desktop.

SF link

Tags:

Linux

Cpu

Process