parallel programming toolbox shutting down

114 views (last 30 days)
Hossein
Hossein on 20 Feb 2015
Commented: Xinqi Wei on 21 Dec 2023
I have a matlab code that has a structure similar to the following
for i=1:10
Some code here
parfor j=1:10
cost(i,j)=feval(myfunction,SomeParameter);
end
end
This code takes a day to run because @myfunction is expensive to calculate. My issue is that once I run the code the parallel programming starts but after a while it becomes idle automatically. parallel pool is already on once it reaches "parfor" but it becomes idle after i=2! You can see it in the parallel computation status bar on the lower bottom corner (Im using 3 out 4 cores)
  2 Comments
Cristiano
Cristiano on 20 Feb 2015
And what happens if you suppress the first loop? I.e., the first line is:
for i=1:1
Does it keep shutting down?
Hossein
Hossein on 21 Feb 2015
Let me correct my question. The parpool does not shut down after i=2, it actually becomes idle. For i=1:1 it works fine but for the next time (i=3) it becomes idle.

Sign in to comment.

Answers (3)

Edric Ellis
Edric Ellis on 23 Feb 2015
You can disable the IdleTimeout behaviour of the parallel pool in one of 2 ways:
  1. Bring up the "parallel preferences" (available via the icon in the bottom-left corner of the MATLAB desktop) and uncheck the box marked "Shut down and delete parallel pool after it is idle for ...". This will then apply to all future pools.
  2. Explicitly disable the IdleTimeout for a given pool by calling something like
parpool(4, 'IdleTimeout', Inf)
  1 Comment
Dio
Dio on 6 Aug 2018
Hi Edric, I don't think Mike's issue is related to IdleTimeout as it's not a time-related issue but iteration-related. I'm experiencing the same problem as him, where parallel processing goes Idle once my first iteration is finished (order of a few seconds, so not IdleTimeout-related) From the second iteration onwards, parallel is Idle. I'm using fmincon with the option 'UseParallel' set to true. Any idea why the optimisation becomes serial after the first iteration? Thanks.

Sign in to comment.


Sardar Azari
Sardar Azari on 13 Oct 2018
I have exactly the same issue as Dio. Did you find any solutions?
  2 Comments
Dio
Dio on 13 Oct 2018
Yes, upgrading from v2016 to v2017 or v2018 fixed this for me.
Yantao Shen
Yantao Shen on 18 Jan 2019
I have exactly the same problem for R2017b

Sign in to comment.


Raimundas Steponavicius
Raimundas Steponavicius on 11 Feb 2021
I have a similar problem too. I use fmincon for a large problem (nearly half a million variables), with the following options/settings:
options=optimoptions('fmincon','Algorithm','interior-point','Hessian','lbfgs','SubproblemAlgorithm','cg','InitBarrierParam',1,'InitTrustRegionRadius',sqrt(length(x0))*1e-3,...);
After every iteration the parallel pool goes idle for some time, and this idling time between the iterations is gradually increasing with iterations. I do not know why and how to deal with this.
I tried it on different versions of MATLAB (R2016b, R2018b, R2020a and R2020b), but the same problem persists.
Any answers as of why this is happening and how to fix this ?
  2 Comments
Somayeh G. Esfahani
Somayeh G. Esfahani on 1 Mar 2023
Edited: Somayeh G. Esfahani on 1 Mar 2023
I did not have any problem with 2018a and setting 'UseParalell' to on, but other releases have made similar problem for me. My code runs well iin serial mode, but when paralell option is on it returns the following erorr:
Error using fcnvectorizer
Function to evaluate must be represented as a string scalar,
character vector, or function_handle object.
Error in makeState (line 69)
Score = fcnvectorizer(state.Population(initScoreProvided+2:end,:),FitnessFcn,1,...
Error in galincon (line 24)
state = makeState(GenomeLength,FitnessFcn,Iterate,output.problemtype,options);
Error in ga (line 416)
[x,fval,exitFlag,output,population,scores] = galincon(FitnessFcn,nvars, ...
Error in main_ga_WT_no2nh4zeroatBC_11feb_matlab2022b (line 29)
[q,sse,exitflag,output,fin_popul,scores] = ga(fnc_GA,4,[],[],[],[],lb,ub,[],options);
Caused by:
Failure in user-supplied fitness function evaluation. GA
cannot continue.
I am using genetic algorithm, and I need to run in paralell to get to the next generations in a reasonable time frame. Unfortunately, this sounds like a bug in new versions of matlab.
Xinqi Wei
Xinqi Wei on 21 Dec 2023
I also have this problem, it works well in R2023 a at begin, but I changed the paramaters in objective function, it shown same problem, Error using fcnvectorizer
Function to evaluate must be represented as a string scalar,
However, R2023 b version has fixed this problem in new Release.
I will try it.

Sign in to comment.

Categories

Find more on Parallel for-Loops (parfor) in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!