我正在运行一个python脚本,它使用networkx包在图形上运行一些算法。 它需要很长时间并且具有高CPU使用率(99%),所以我想限制其CPU使用率。
我在此过程中使用cpulimit将cpu使用率限制为60%
cpulimit -p 29780 -l 60
然而,当我使用它时,该过程被停止,如下所示
[lily@geland academic]$ python run.py
the number of nodes in the graph is: 16264
[1]+ Stopped python run.py
但cpu使用率仍为60%
出了什么问题以及如何应对这种情况? 谢谢!