This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我想运行两个 python 脚本。每一个都需要很长时间才能完成。我正在使用双核 FreeBSD 机器,并希望确保我使用这两个内核。当我运行这两个脚本时,我发现它们最终都在同一个 CPU 中运行。如何控制两个脚本被不同的 CPU 占用?我知道在 Linux 中我们可以指定 taskset -c X python foo.py 其中 X 是 CPU 编号,如 0、1、2。我怎样才能在 FreeBSD 系统中做类似的事情。