Batch processing a function
조회 수: 2 (최근 30일)
이전 댓글 표시
I want to batch process the following for loop in my script (which contains a call to a function I wrote called 'interp'). I need the loop to be repeated 120 times but split across 4 workers, and the function needs to call the correct data layer from 3D arrays [e.g. squeeze(bearing_rec(a,:,:))]. I would want the data to put produced at the end of each loop and saved as a .mat file.
Would anyone be able to help me with how to code this?
for a = 1:length(sourcelat) % sourcelat = 120
integral_area_size = squeeze(integral_area(1,:,:)); % integral area = 5396 x 5396
[integral_rec, Hc_rec] = interp(integral_area_size, rng, squeeze(bearing_rec(a,:,:)), squeeze(range_rec(a,:,:)), squeeze(H3(a,:,:)), squeeze(min_H(a,:,:)));
% Need to print output for each here
save(['F:/Outputs/Output_' num2str(a) '.mat'],'integral_rec', 'Hc_rec')
end
댓글 수: 0
답변 (2개)
Stephane Dauvillier
2019년 7월 15일
You need to use the batch function:
j = batch('yourScriptName','Pool',4);
And replace the for loop by a parfor loop.
Be careful: if you want your batch to be perform on 4 worker you will need 5 core as one is dedicated to launch the job.
Be careful²: if you have already strated a MATLAB pool before, then you will have fewer available worker for your batch job. Suppose you have 12 total worker and you already open a pool on 8 workers then your batch can only have 12-8 = 4 worker and since once will be dedicated to launch the job you have only 3 available worker
Be Careful^3/ save function is not allowed in parfor loop
Stephane Dauvillier
2019년 7월 16일
With the batch function, your script will be executed on your PC as it is. The onlyu difference is your current MATLAB session won't be freeze.
If your script don't use parallel, your batch won't.
To launch the execute script on a pool of 3 workers (+1 for creating the job)
job=batch("execute","Pool",3);
if you want to see the state of your job
job.State
When the answer is finished that mean you can retrieve the result
Result = load(job)
N = Result.N ;
foo = Result.foo;
If the file execute is the following
N=10;
% Use cell array in order to save your results
foo = cell(N,1);
parfor i=1:N
foo{i} = peaks(i) ;
end
So if you want to save your result in a mat file, just do the following (at the end of your script of after retrieving the result
for i = 1:N
data = foo{i} ;
save(['mySaved',num2str(i,'%02i')],'data')
end
Note that the job (and its result will still be in memory) even when closing MATLAB. In order tio clear it from memory
delete(job)
댓글 수: 5
Stephane Dauvillier
2019년 7월 16일
OK, I didn't look at the size of you matrices.
1 double takes 8 bytes so 120 matrices 5400 by 5400 takes a little less than 28 GBytes (I assume this is too much for your PC).
OK So what you can do is the following:
N = 120;
parfor a = 1:length(sourcelat)
myTask(a,squeeze,integral_area,bearing_rec,range_rec,H3,min_H)
end
The idea is to create a function that does what you want (I may I forget some inputs). And you will be able to save your data in a matfile
function myTask(a,squeeze,integral_area,bearing_rec,range_rec,H3,min_H)
integral_area_size = squeeze(integral_area(1,:,:));
[integral_rec, Hc_rec] = interp(integral_area_size, rng, squeeze(bearing_rec(a,:,:)), squeeze(range_rec(a,:,:)), squeeze(H3(a,:,:)), squeeze(min_H(a,:,:)));
save(['mySaved',num2str(a,'%02i')],'integral_rec','Hc_rec')
end
By doing so you will need to have space in memory for 3 matrices 5400 by 5400 and not 120 which should stand in memory
참고 항목
카테고리
Help Center 및 File Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!