在我的服务器上,我有 4 个 CPU,每个有 22 个内核。所以有176个逻辑核心。
(base) wangxiang@t740:~$ cat /proc/cpuinfo| grep "processor"| wc -l
176
但是在使用任务集时,我只能使用前 61 个内核:
(base) wangxiang@t740:~$ taskset -c 60 echo hello
hello
(base) wangxiang@t740:~$ taskset -c 70 echo hello
taskset: failed to set pid 88332's affinity: Invalid argument
为什么?谢谢