gpt4 book ai didi

python - 使用 matplotlib.collection.LineCollection 时发生内存泄漏

转载 作者:行者123 更新时间:2023-12-01 05:09:20 25 4
gpt4 key购买 nike

我使用以下代码创建颜色编码线图的集合:

for j in idlist[i]:
single_traj(lonarray, latarray, parray)

plt.savefig(savename, dpi = 400)
plt.close('all')
plt.clf()

地点:

def single_traj(lonarray, latarray, parray, linewidth = 0.7):
"""
Plots XY Plot of one trajectory, with color as a function of p
Helper Function for DrawXYTraj
"""
global lc
x = lonarray
y = latarray
p = parray

points = np.array([x,y]).T.reshape(-1,1,2)
segments = np.concatenate([points[:-1], points[1:]], axis=1)

lc = col.LineCollection(segments, cmap=plt.get_cmap('Spectral'),
norm=plt.Normalize(100, 1000), alpha = 0.8)
lc.set_array(p)
lc.set_linewidth(linewidth)
plt.gca().add_collection(lc)

不知何故,这个循环使用了大量内存(>~10GB),在保存绘图后仍在使用。我用hpy查看内存使用情况

Partition of a set of 27472988 objects. Total size = 10990671168 bytes.
Index Count % Size % Cumulative % Kind (class / dict of class)
0 8803917 32 9226505016 84 9226505016 84 dict of matplotlib.path.Path
1 8888542 32 711083360 6 9937588376 90 numpy.ndarray
2 8803917 32 563450688 5 10501039064 96 matplotlib.path.Path
3 11 0 219679112 2 10720718176 98 guppy.sets.setsc.ImmNodeSet
4 25407 0 77593848 1 10798312024 98 list
5 89367 0 28232616 0 10826544640 99 dict (no owner)
6 7642 0 25615984 0 10852160624 99 dict of matplotlib.collections.LineCollection
7 15343 0 16079464 0 10868240088 99 dict of
matplotlib.transforms.CompositeGenericTransform
8 15327 0 16062696 0 10884302784 99 dict of matplotlib.transforms.Bbox
9 53741 0 15047480 0 10899350264 99 dict of weakref.WeakValueDictionary

此时绘图已保存,因此所有与 matplotlib 相关的对象都应该消失...但我无法“找到”这些对象,这意味着我不知道如何删除它们。

编辑:

这是一个重现泄漏的独立示例(savefig 由于某种原因抛出错误,但无论如何都不相关):

# Memory leak test!

import numpy as np
import matplotlib
import matplotlib.pyplot as plt
import matplotlib.collections as col

def draw():

x = range(1000)
y = range(1000)
p = range(1000)

fig = plt.figure(figsize = (12,8))
ax = plt.gca()
ax.set_aspect('equal')


for i in range(1000):
if i%100 == 0:
print i
points = np.array([x,y]).T.reshape(-1,1,2)
segments = np.concatenate([points[:-1], points[1:]], axis=1)

lc = col.LineCollection(segments, cmap=plt.get_cmap('Spectral'),
norm=plt.Normalize(0, 1000), alpha = 0.8)
lc.set_array(p)
lc.set_linewidth(0.7)
plt.gca().add_collection(lc)

cb = fig.colorbar(lc, shrink = 0.7)
cb.set_label('p')
cb.ax.invert_yaxis()
plt.tight_layout()

#plt.savefig('./mem_test.png', dpi = 400)
plt.close('all')
plt.clf()


draw()

a = input('Wait...')

draw() 函数应该删除所有 plt 对象,但在调用该函数后它们仍然占用内存。我只是用 top/htop 检查一下!

最佳答案

从你的 hpy 转储看来,内存占用由大量 matplotlib.path.Paths 组成。这可能是由于您的变量 lc 造成的。您尝试过del lc吗?可能 plt.close 无法(至少不应该!)能够删除它们,因为它们位于全局变量 lc 中。

关于python - 使用 matplotlib.collection.LineCollection 时发生内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24513644/

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