Disadvantages of leaving parpool open?
3 次查看(过去 30 天)
显示 更早的评论
Given the lengthy time required to launch a parpool, I have considered just launching one at the start of every MATLAB session and setting the IdleTimeout parameter to Inf to force the pool to remain open for the entire session. What would be the downside of doing this while the pool isn't being actively used? Is there a performance penalty on serial code when a pool is left open in the background?
0 个评论
采纳的回答
Jason Ross
2018-4-10
You would have that number of MATLAB processes running and waiting for work, consuming computing resources from your machine. You can see this from whatever task list application exists on your platform.
Assuming your machine has the capacity to run those processes plus whatever you are doing serially there's not a downside. It would be the same as if you have some other number of arbitrary programs open while you are using MATLAB -- as long as everything stays in RAM and you have adequate processors to support it, you'll likely not notice.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Parallel Computing Fundamentals 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!