Parallel Computing in Optimization Toolbox

조회 수: 2 (최근 30일)
Yro
Yro 2020년 10월 18일
댓글: Matt J 2022년 4월 18일
I want to use the GA toolbox for optimization but with the parallel option ('UseParallel', true).
options = optimoptions(@ga,'Display', 'iter', ...
'OutputFcn',@GA_OUTPUT ,...
'PlotFcn', {@gaplotbestf, @PLOT_FUNCTION},...
'MaxGenerations', 60, ...
'PopulationSize', POPULATION_SIZE, ...
'FunctionTolerance',1e-6, ...
'CrossoverFraction', 0.95, ...
'EliteCount', 0.1*30,...
'UseParallel', true) ;
[x,fval,exitflag,output,population,scores] = ...
ga(@OBJECTIVE_FUNCTION,nvars,A,b,Aeq,beq,lb,ub,@POWER_CONSTRAINT,IntCon,options) ;
My question is how can I attach my working directory (/home/user/workidir) with the files to be used by the algorithm in each Worker.
Thanks.
  댓글 수: 3
Yro
Yro 2020년 10월 19일
Hi, thanks for your reply,
  1. No, Matlab starts the parallel calculation automatically.
  2. Yes, it is the PC that I use and that is the directory where I am running the code.
Thanks.
Matt J
Matt J 2022년 4월 18일
Yi Zhao's comment moved here:
Hello,
Whether your problem has been solved,and whether the solution can be shared.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by