Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 experiments passing pthread_t's around and as expected they fail. Am I trying to do something impossible? If not, can you send a pointer please? Thanks a million.

share|improve this question

4 Answers

Assuming linux:

The interface to setting the affinity is - as you've probably already discovered:

int sched_setaffinity(pid_t pid,size_t cpusetsize,cpu_set_t *mask);

Passing 0 as the pid, and it'll apply to the current thread only, or have other thread report their kernel pid with the linux specific call pid_t gettid(void); and pass that in as the pid.

Quoting the man page

The affinity mask is actually a per-thread attribute that can be adjusted independently for each of the threads in a thread group. The value returned from a call to gettid(2) can be passed in the argument pid. Specifying pid as 0 will set the attribute for the calling thread, and passing the value returned from a call to getpid(2) will set the attribute for the main thread of the thread group. (If you are using the POSIX threads API, then use pthread_setaffinity_np (3) instead of sched_setaffinity().)

share|improve this answer

I have done a pthread program where i cheack the prime in range from 1 20000. I divided it 2 Thread like 1 .. 10000 & 10001 .. 20000. These two range are runing on to my 2 cpu by

CPU_SET()

You can see my code on my blog

share|improve this answer
CPU_SET() doesn't actually set the affinity -- it only manipulates the cpu_set_t data structure. After calling CPU_SET(n, &my_set), you should call sched_setaffinity(0, sizeof(cpu_set_t), &my_set) or the corresponding pthread_setaffinity_np() call – J Teller Apr 27 '12 at 21:21
@ J Teller ...Everything was on my blog.Why don't you see that and then comment???? – Robel sharma May 9 '12 at 8:30
5  
Because I don't particularly care what your blog says: your answer is wrong/incomplete. I voted it down for that reason, and commented with my reason why. – J Teller May 30 '12 at 21:04

Please find the below example program to cpu-affinity of a particular pthread.

Please add appropriate libs.

double waste_time(long n)
{

    double res = 0;
    long i = 0;
    while (i <n * 200000) {
        i++;
        res += sqrt(i);
    }
    return res;
}

void *thread_func(void *param)
{

    unsigned long mask = 1; /* processor 0 */

    /* bind process to processor 0 */
    if (pthread_setaffinity_np(pthread_self(), sizeof(mask),
        &mask) <0) {
        perror("pthread_setaffinity_np");
    }

    /* waste some time so the work is visible with "top" */
    printf("result: %f\n", waste_time(2000));

    mask = 2;   /* process switches to processor 1 now */
    if (pthread_setaffinity_np(pthread_self(), sizeof(mask),
        &mask) <0) {
        perror("pthread_setaffinity_np");
    }

    /* waste some more time to see the processor switch */
    printf("result: %f\n", waste_time(2000));
}


int main(int argc, char *argv[])
{

    pthread_t my_thread;

    if (pthread_create(&my_thread, NULL, thread_func, NULL) != 0) {
        perror("pthread_create");
    }
    pthread_exit(NULL);
}

Compile above program with -D_GNU_SOURCE flag.

share|improve this answer
2  
Your program will work, but there are several issues that I see: 1) pthread_setaffinity_np takes a cpu_set_t, not an unsigned long. One should use the CPU_SET, CPU_ZERO, etc. macros to manipulate the masks before passing to the affinity functions 2) Finally, you don't need to launch a new thread with pthread_create to run the main part of your code – J Teller Apr 27 '12 at 21:25

This is a wrapper I've made to make my life easier. Its effect is that the calling thread gets "stuck" to the core with id core_id:

int stick_this_thread_to_core(int core_id) {
   int num_cores = sysconf(_SC_NPROCESSORS_ONLN);
   if (core_id >= num_cores)
      return EINVAL;

   cpu_set_t cpuset;
   CPU_ZERO(&cpuset);
   CPU_SET(core_id, &cpuset);

   pthread_t current_thread = pthread_self();    
   return pthread_setaffinity_np(current_thread, sizeof(cpu_set_t), &cpuset);
}
share|improve this answer
1  
For future reference: It's needed to add #define _GNU_SOURCE and #include <sched.h> to work on gcc 4.7.2. Worked perfectly on arch linux, tested with oprofile and pthread. – JohnTortugo May 19 at 4:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.