Multi processor
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (2)
Daniel Shub
am 16 Mär. 2012
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 Kommentare
Jan
am 16 Mär. 2012
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 Kommentare
Siehe auch
Kategorien
Mehr zu Parallel Computing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!