You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indeed, memory management for big objects in python is something to be improved. It appears even after removing references, GC releases allocated memory. But memory allocators might not release part of the memory to OS till the process is killed. So with your iterations, more and more memory is allocated, which leads to a collapse.
Try to google some addons on better memory usage for Python processes. Or run the computation in a separate process to be sure it is killed after each iteration.
igl.adjacency_list
will produce memory leak. You can test with the following script. The garbage collector(gc) dosen't help.The text was updated successfully, but these errors were encountered: