本文主要是介绍matlab并行不启动 关闭默认并行池,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
matlab并行是给常简单地,但是有的时候使用parfor并不能开始并行。
命令行如果提示:
Starting parallel pool (parpool) using the 'local' profile ...
Preserving jobs with IDs: 1 because they contain crash dump files.
You can use 'delete(myCluster.Jobs)' to remove all jobs created with profile local. To create 'myCluster' use 'myCluster = parcluster('local')'.
myCluster = parcluster('local');
delete(myCluster.Jobs);
这两行代码即可
这篇关于matlab并行不启动 关闭默认并行池的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!