You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I ran my matlab code in Linux environment on HPC, I ran into following warning signs:
Warning: A worker aborted during execution of the parfor loop. The parfor loop will now run again on the remaining workers.
Now my questions are:
Will the job being processed on the aborted worker be neglected, without processed further?
Since the above message shows that parfor will run again on the remaining workers, and in my code one worker corresponds to one patient image, so, only part of patient images, say, 6 out of 10 patient images will be processed? The reason for me to ask this question is that I do see only part of patient image being processed.
My matlab code works in Windows environment perfectly without above issues at all.
The text was updated successfully, but these errors were encountered:
This is a tough one. I hesitantly suggest the issue is likely the HPC. I work pretty much exclusively on Linux and haven't noticed a problem but I've almost never tried this on an HPC.
Will the job being processed on the aborted worker be neglected, without processed further?
Yes, probably.
Since the above message shows that parfor will run again on the remaining workers, and in my code one worker corresponds to one patient image, so, only part of patient images, say, 6 out of 10 patient images will be processed? The reason for me to ask this question is that I do see only part of patient image being processed.
The workers are parallel and independent so that makes sense.
I'd suggest the following:
Identify which image fails and confirm what happens on Windows.
What happens on Linux without HPC? Just a regular desktop.
Where exactly does it fail? How does it fail? Look at the log files and if necessary make more logging to check.
Rob
raacampbell
changed the title
Warning when running my matlab code in Linux using Ellastix: A worker aborted during execution of the parfor loop
Warning when running my MATLAB code in Linux using Elastix: A worker aborted during execution of the parfor loop
May 4, 2021
When I ran my matlab code in Linux environment on HPC, I ran into following warning signs:
Warning: A worker aborted during execution of the parfor loop. The parfor loop will now run again on the remaining workers.
Now my questions are:
My matlab code works in Windows environment perfectly without above issues at all.
The text was updated successfully, but these errors were encountered: