1

我从命令行(即http://man7.org/linux/man-pages/man7/cpuset.7.html)使用cpuset 来运行C/C++ 程序。

我想知道 C/C++ 是否能够检索它在其上运行的 cpuset。

我阅读了http://man7.org/linux/man-pages/man3/CPU_SET.3.html但我没有看到任何宏能够实现我想要的。

我想在程序中检索 cpuset 的主要原因是填充 cpu_set_t* 以便我可以将它传递给 pthread_attr_setaffinity_np()。

提前致谢。

4

2 回答 2

1
cpu_set_t cpuset;
CPU_ZERO(&cpuset);
if (0 == sched_getaffinity(getpid(), sizeof(cpu_set_t), &cpuset)) {
    const long nCores = sysconf( _SC_NPROCESSORS_ONLN );
    for (long i = 0; i < nCores; i++) {
        if (CPU_ISSET(i, &cpuset)) {
            std::cout << "core # " << i << " is in cpuset" << std::endl;
        }
    }
}
else {
    std::cerr << "sched_getaffinity() failed: " << strerror(errno) << std::endl;
}
于 2013-09-20T12:22:43.603 回答
0

你可以在设置为的 CPU 上工作

    #define _GNU_SOURCE
    #include <sched.h>


    cpu_set_t my_set;
    CPU_ZERO(&my_set);
    CPU_SET(1, &my_set); // here 1 is the cpu 1 similarly u can set more
    CPU_SET(2, &my_set); // here 2 is the cpu 2 similarly u can set more
    pthread_setaffinity_np(pthread_self(), sizeof (cpu_set_t), &my_set);
于 2013-09-20T12:18:34.370 回答