gpt4 book ai didi

python - psutil.Process.get_memory_info中RSS的单位是什么?

转载 作者:太空狗 更新时间:2023-10-29 21:29:19 25 4
gpt4 key购买 nike

当我使用 ps -o pid,rss -p 1 时,我看到以下内容:

PID RSS
1 784

但是当我使用 psutil 查询 rss 时,我得到了不同的值:

>>> p = psutil.Process(1)
>>> print p.get_memory_info().rss
802816

psutil 是否有可能使用不同的单位?我在 documentation 中找不到任何相关信息.

最佳答案

ps 的输出以千字节为单位。 psutil 的 RSS(驻留集大小)以字节为单位。

>>> 802816 / 784
1024

来自 man ps:

rss         RSS       resident set size, the non-swapped physical 
memory that a task has used (in kiloBytes). (alias rssize, rsz).

关于python - psutil.Process.get_memory_info中RSS的单位是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17990227/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com