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.
我正在尝试使用8 个以下内核运行可执行文件 ( wrf.exe) 。mpiexec我遇到的一个问题是这个进程使用了我计算机上的所有 CPU,然后在运行中崩溃。我试图在互联网上寻找这个问题的解决方案,包括通过 mpich 文献,但我没有找到任何解决这个问题的方法。
wrf.exe
mpiexec
有谁知道我在运行时如何调节 CPU 使用率mpiexec -np 8 ./wrf.exe?我想要它,这样我就可以分配大约 75% 的 cpu 使用率来运行它。任何帮助将不胜感激。
mpiexec -np 8 ./wrf.exe
删除 -np 8,只需 mpiexec ./wrf。