Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

jupyter notebook - How do I delete a shared RawArray in Python to free up memory space

I′m working with an array of size (256**4, dtype=ctypes.c_short) which takes 8 GB in memory as a multiprocessing.RawArray object in memory. After i did all calculations, i haven′t found a way to free up that space.The following don′t work:

X = RawArray(ctypes.c_short, 256**4)

del X

Is there a special method to delete this kind of object?

I′m working in a Jupyter notebook in Windows with Python 3.7

question from:https://stackoverflow.com/questions/65893221/how-do-i-delete-a-shared-rawarray-in-python-to-free-up-memory-space

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...