Multi processor
3 次查看(过去 30 天)
显示 更早的评论
Hi, I started a calculation on matlab and I saw that matlab use only 25% of the CPUs of my machine (1 CPU of 4 in my case). How can I set matlab to use all CPU of my machine? thanks!
0 个评论
回答(2 个)
Daniel Shub
2012-3-16
MATLAB will use all the cores of your CPU if it can. Some calculations are not CPU limited, so you might not see maximum usage. Other calculations cannot be easily multi-threaded. Sometimes you can help MATLAB realize that a calculation can be multi-threaded (e.g., parfor). Without a simplified version of what you are doing, there is no way to help you more.
0 个评论
Jan
2012-3-16
It depends on the problem. If you can parallalize it, it happens either automatically for some commands ( filter, sum, etc), manually by using parfor or spmd or by running several Matlab instances. If the problem cannot be parallelized, you cannot distribute the work to different threads, e.g. when you write a large file to the disk.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!