필터 지우기
필터 지우기

Simulink design optimization with Parallel computing toolbox

조회 수: 1 (최근 30일)
Srinivas
Srinivas 2012년 3월 8일
Hello all, I am using Simulink design optimization with parallel computing toolbox to tune some parameters( usually 10-15), the problem is with how many ever cores I start the optimization, it gives me a error saying
'The session that parfor is using has shutdown'
or
'The client has lost connection to Lab X' X being some number.
This occurs when I deal with pretty huge data sets.
the peak memory usage is 3.2 GB, my machine settings are Windows 7, Dual Quad(2.13GHz), 24 GB RAM, 240 GB SSD with 60GB page file and 70GB free space.
I hope I am clear enough, any help to resolve this issue would be appreciated

답변 (1개)

Alec Stothert
Alec Stothert 2012년 3월 8일
Hi Srinivas,
Is this for an estimation problem, in other words is it the expected model output data that is "pretty huge"? Can you send the data (or similarly sized data) to the MATLAB pool using a parfor loop, i.e., outside of SDO.
-Alec
  댓글 수: 2
Srinivas
Srinivas 2012년 3월 8일
Hi Alec,
This is an estimation problem, the expected model output data is "pretty huge", I have no problems running it on smaller data sets. I am not sure what you mean by sending the data to the MATLAB pool using a parfor loop.
Alec Stothert
Alec Stothert 2012년 3월 8일
Without knowing the whole estimation problem I was wondering if you hit a memory issue causing the pool to fail simply by using a parfor loop. So something like:
data = LoadMyHugeData
parfor ct=1:10
result(ct) = mean(data); %or some action on the data
end
I'll send you an email and we can discuss more off line.
-Alec

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

카테고리

Help CenterFile Exchange에서 Parameter Estimation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by