Why is parallel poor button still gray and showing "No parallel poor" even already started?

1 view (last 30 days)
Hi, guys, I have written something that definitely needs parallel workers to boost the calculation. So I add the line
parpool('local');
into startup.m
Now the pool will be automatically started, but why the button below still shows "No parallel poor"?
Is there a better way to start it at startup?

Accepted Answer

Raymond Norris
Raymond Norris on 30 Oct 2021
It might be a bug that the icon isn't reflecting the state of the parallel pool properly. Nevertheless, I'm assuming you can run a parfor/spmd over the pool?
Keep in mind, if you call parpool('local'), you're getting the default number of workers to start up, just as if parfor started for you the first time. So in essence, you don't need to add this to startup. MATLAB will start it when you need it. You only need to explicitly call parpool if you don't want the default parameters (e.g., profile, number of workers, etc.).

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!