how to run two matlab scripts in parallel?
177 次查看(过去 30 天)
显示 更早的评论
I need to run two scripts in parallel and simultaneously, run the first script and the second script at the same time.
0 个评论
采纳的回答
KSSV
2017-1-2
You can use parfor to run two functions simultaneously. Eg:
funcs1 = {@fun1, @fun2} ; % let fun1, fun2 be two functions
arguments = {inp1,inp2 ;inp1,inp2} ; % write the inputs of each function
solutions = cell(1,2); % initialize the solution
% use of parfor
parfor ii = 1:2
solutions1{ii}=funcs1{ii}(arguments1{ii,:});
end
M = solutions1{1} ; N = solutions1{2} ; % assign the results
0 个评论
更多回答(4 个)
José-Luis
2017-1-2
编辑:José-Luis
2017-1-2
Another alternative is to start two sessions of Matlab and run the different scripts there.
4 个评论
Hamza Ashraf
2020-9-26
Can you explain it with code i dont know how to use spmd with labsend and lab receive
Austin Bond
2018-4-17
should the 'arguments' and 'solutions' variables really be 'arguments1' and 'solutions1'?
Sean de Wolski
2018-4-17
Just call batch directly or right-click on the script in the current folder browser and select "Run as batch job"
0 个评论
MathWorks Support Team
2022-9-2
You can use Parallel Computing Toolbox to run two MATLAB functions simultaneously. (If you have scripts, then first wrap them up as functions as described here in the doc Create Functions in Files). The parfeval function allows you to run two functions simultaneously on a parallel pool. Each call to parfeval causes the specified function to be invoked on a worker with the provided inputs. You also need to specify up front how many outputs you want. Your code might end up like this:
numOut = 1; % Both functions here have only a single output
f1 = parfeval(@myFirstFunction, numOut, in1, in2); % request myFirstFunction(in1,in2)
f2 = parfeval(@mySecondFunction, numOut, in3); % request mySecondFunction(in3)
out1 = fetchOutputs(f1); % this waits for myFirstFunction to complete and then gets the result
out2 = fetchOutputs(f2);
If you need to process the results as soon as either function completes, you could use fetchNext instead of fetchOutputs.
1 个评论
Walter Roberson
2022-9-2
These days, you can also use parfeval() and background threads without needing the Parallel Computing Toolbox; see backgroundPool
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Parallel for-Loops (parfor) 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!