Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为 Core 2 设置 Windows CPU 关联掩码时,掩码应该是 0x0010 还是 0x0001?我见过一个例子,其中核心 0 的掩码设置为 0x0010 但这没有多大意义?
0x0000根本不允许为此进程/线程安排任何 CPU。(将暂停,假设在参数验证期间设置亲和度不会失败,在不同的Windows版本上可能会有所不同)
0x0000
0x0001只允许 Core 0
0x0001
0x0002仅允许 Core 1
0x0002
0x0003允许 Core 0 和 Core 1。
0x0003
您也可以对其进行任务设置
("taskset -cp 2 %d"% os.getpid())