我在尝试着
并行运行16个副本(处理器固定)(每个内核2个副本)
在处理器固定的情况下(每个内核2个拷贝)同时运行8个拷贝,并在某个函数表示函数1完成后,将处理器内核翻转到最远的内核。
我面临的问题是如何select最远的处理器。
有些朋友build议使用sched_getaffinity(2)和sched_setaffinity,但我没有find任何好的例子。
请帮忙。
要使用sched_setaffinity使当前进程在核心7上运行,请执行以下操作:
cpu_set_t my_set; /* Define your cpu_set bit mask. */ CPU_ZERO(&my_set); /* Initialize it all to 0, ie no CPUs selected. */ CPU_SET(7, &my_set); /* set the bit that represents core 7. */ sched_setaffinity(0, sizeof(cpu_set_t), &my_set); /* Set affinity of tihs process to */ /* the defined mask, ie only 7. */
不要使用CPU_SETSIZE作为sched_ [set | get]关联的cpusetsize参数。 名字是误导,但这是错误的。 makro CPU_SETSIZE是(引用man 3 cpu_set)“比cpu_set_t中可以存储的最大CPU号大一个值”。 你必须使用
sched_setaffinity(0, sizeof(cpu_set_t), &my_set);
代替。