메모리 부족으로 인해 루핑 프로그램이 멈춤 (Looping program freezes due to memory running out)


문제 설명

메모리 부족으로 인해 루핑 프로그램이 멈춤 (Looping program freezes due to memory running out)

다음을 사용하여 동일한 확률적 프로그램을 100,000번 실행하고 있습니다. Loop 100000 각 루프 후에 데이터가 저장되지 않습니다.

약 30,000개의 루프 후에 프로그램이 멈춘 후 메모리 부족으로 가정합니다. 각 루프의 시작 부분에 메모리를 정리할 수 있는 항목이 있습니까?

Dell 노트북에서 Ubuntu를 사용하여 Python 프로그램을 실행하고 있습니다.

미리 감사합니다

각 루프 시작 시 다음과 같은 모든 파일이 지워집니다.

del resistance[:]


참조 솔루션

방법 1:

I don't know if this will help you specifically, but it is good for freeing up memory. Try importing gc and call gc.collect() right before and/or inside of the for loop.

방법 2:

Thanks everyone. I tried installing psutil, it installed in Unix but when I went to run it in Python it said psutil was not installed. Other people seem to get the same problem. I am running with gc.collect() and waiting to see what happens.

A question for silver. Why does Python keep allocating storage when I run del resistance[ : ]? as in:

Loops = 30000 for i range(Loops): del resistance[ : ]; for j in range(15): resistance[] = some_function;

(by BobBilbo BagginsBob)

참조 문서

  1. Looping program freezes due to memory running out (CC BY‑SA 2.5/3.0/4.0)

#Python #ubuntu #loops






관련 질문

Python - 파일 이름에 특수 문자가 있는 파일의 이름을 바꿀 수 없습니다. (Python - Unable to rename a file with special characters in the file name)

구조화된 배열의 dtype을 변경하면 문자열 데이터가 0이 됩니다. (Changing dtype of structured array zeros out string data)

목록 목록의 효과적인 구현 (Effective implementation of list of lists)

for 루프를 중단하지 않고 if 문을 중지하고 다른 if에 영향을 줍니다. (Stop if statement without breaking for loop and affect other ifs)

기본 숫자를 10 ^ 9 이상으로 늘리면 코드가 작동하지 않습니다. (Code fails to work when i increase the base numbers to anything over 10 ^ 9)

사용자 지정 대화 상자 PyQT5를 닫고 데이터 가져오기 (Close and get data from a custom dialog PyQT5)

Enthought Canopy의 Python: csv 파일 조작 (Python in Enthought Canopy: manipulating csv files)

학생의 이름을 인쇄하려고 하는 것이 잘못된 것은 무엇입니까? (What is wrong with trying to print the name of the student?)

다단계 열 테이블에 부분합 열 추가 (Adding a subtotal column to a multilevel column table)

여러 함수의 변수를 다른 함수로 사용 (Use variables from multiple functions into another function)

리프 텐서의 값을 업데이트하는 적절한 방법은 무엇입니까(예: 경사하강법 업데이트 단계 중) (What's the proper way to update a leaf tensor's values (e.g. during the update step of gradient descent))

Boto3: 조직 단위의 AMI에 시작 권한을 추가하려고 하면 ParamValidationError가 발생합니다. (Boto3: trying to add launch permission to AMI for an organizational unit raises ParamValidationError)







코멘트