필터 지우기
필터 지우기

parfor 内存累计不释放

조회 수: 51 (최근 30일)
克
2023년 7월 22일
댓글: 2023년 8월 9일
这样的parfor里面存在什么问题吗?
运行的服务器512G内存 10核运算仍然会满内存
n = 1; %as an input is a content in parfor (常数)
ebler = 0;
for k = 1:loopout % loopout = 100000
C = 0; V = 0;
Blockerror = zeros(loopin,,1);
parfor j = 1:loopin %loopin = 1000
[C V] = function1();%renturn c and v
Blockerror(j,,1) = 1-qfunc(sqrt(n)*C./sqrt(V));
end
bler = bler + sum(Blockerror);%sum Blockerror (累加Blockerror)
clear Blockerror C V;
end

답변 (1개)

Shushant
Shushant 2023년 8월 9일
Hi ,
I understand that when you execute your code your server memory is running out of space. This issue is because you are using a "parfor" loop inside a for loop, due to this the amount of data transferred will be much greater and you will also not notice any major computational benefit when compared to nested-for loops. This happens because each of the multiple “parfor” executions incurs an overhead.
To solve this issue run the outer loop in parallel instead of the inner loop, this will ensure that the overhead incurs only once. For more information on the same, kindly refer to the following documentation -
I hope this provides you with the required information regarding your query.
Thank you,
Shushant
  댓글 수: 1
克
2023년 8월 9일
Thanks for your answer. I find my problem and solved it by using outer loop "parfor" and changing the huge array to small array, then sum it. Thanks again!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 循环及条件语句에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!