Recursion Limit inside parfor
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Samuel
am 10 Mär. 2014
Kommentiert: Edric Ellis
am 11 Mär. 2014
It seems that resetting recursion limit is ignored inside parfor. I have a recursive program that will exceed the default 500 limit. I can run it without problem using usual for loop. However, if I change it to parfor, I got the error
Caused by:
Maximum recursion limit of 500 reached. Use
set(0,'RecursionLimit',N) to change the limit. Be aware
that exceeding your available stack space can crash MATLAB
and/or your computer.
And no matter where I put the reset limit command set(0,'RecursionLimit',2000) (inside or outside parfor). I still got the same error message
0 Kommentare
Akzeptierte Antwort
Edric Ellis
am 10 Mär. 2014
I would try calling
spmd
set(0, 'RecursionLimit', N);
end
as this will ensure it executes on all workers.
2 Kommentare
Edric Ellis
am 11 Mär. 2014
Unexpected loss of connection can sometimes occur if the worker machines crash.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!