Starting parallel pool gives message about crash dump files

64 vues (au cours des 30 derniers jours)
Dinesh Nandlal
Dinesh Nandlal le 9 Nov 2023
Commenté : Strider le 4 Nov 2024
When I create a parallel pool using parpool I get the following:
>> parpool()
Starting parallel pool (parpool) using the 'Processes' profile ...
Preserving jobs with IDs: 9 73 because they contain crash dump files.
You can use 'delete(myCluster.Jobs)' to remove all jobs created with profile Processes. To create 'myCluster' use 'myCluster = parcluster('Processes')'.
Connected to the parallel pool (number of workers: 12).
I'm not sure what action to take as I don't understand what "Preserving jobs with IDs: 9 73 because they contain crash dump files." means, nor how do I find and view the crash dump files. The rest of the parallel job seems to run fine, but this message not appear on other user's machines so I'd like to understand, and possibly resolve it just in case.
Thanks in advance!

Réponse acceptée

Walter Roberson
Walter Roberson le 9 Nov 2023
Déplacé(e) : Walter Roberson le 9 Nov 2023
Some previous run or runs crashed at some point in the past. The job identifiers involved were 9 and 73 -- which were not necessarily produced in the same run, but might have been.
At the time of the crash of the job, parcluster produced crash files in order to give some hope for debugging whatever it was that lead to the crashes.
When you started a new run, parcluster looked and noticed the crash files, and deliberately preserved them.
If you know you want to get rid of them, then give the command
myCluster = parcluster('Processes')
delete(myCluster.Jobs)
  1 commentaire
Strider
Strider le 4 Nov 2024
Where do I find the parpool crash dump files? Is it in the same location as other crash logs?

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

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by