Effacer les filtres
Effacer les filtres

Error using PARFOR: Index exceeds the number of array elements

17 vues (au cours des 30 derniers jours)
Sherwin
Sherwin le 27 Fév 2021
Commenté : Walter Roberson le 27 Fév 2021
Hi,
I'm using a parfor loop in my GA algorithm. After some time of running this error pops up:
Error using distcomp.remoteparfor/getCompleteIntervals
Index exceeds the number og array elements (0)
Can someone please help me fix it?
  2 commentaires
Walter Roberson
Walter Roberson le 27 Fév 2021
Does your algorithm use global variables?
Sherwin
Sherwin le 27 Fév 2021
yes, it does.

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 27 Fév 2021
global variables are not copied to workers when you use Parallel Computing Toolbox, and setting the variable on one worker does not affect the others.
You can in some circumstances use parpool constant. Or you can use parfevalOnAll to run an initialization function on all the workers.
  2 commentaires
Sherwin
Sherwin le 27 Fév 2021
Modifié(e) : Sherwin le 27 Fév 2021
Thank you so much for your answer, however, I guess this is a time-related issue. My GA is slow and it probably has to make more than 25000 iterations to converge. This error only came up after more than 16000 iterations which had took one and a half day of running.
Walter Roberson
Walter Roberson le 27 Fév 2021
I could hypothesize that it was not until that point that one of your nonlinear constraints happened to try to access the (empty) global variable. You should rewrite to not use global variables.
I would also recommend that you put in an OutputFcn that saves the current population from time to time -- not necessarily every iteration as that could be too expensive. Enough iterations to be (say) roughly 10 minutes. Using a different file for each worker. The idea would be that if you had a failure you would be able to reconstruct a recent population and start running from that.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Parallel Computing Fundamentals dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by