Effacer les filtres
Effacer les filtres

Multi processor

1 vue (au cours des 30 derniers jours)
Nello Troccia
Nello Troccia le 16 Mar 2012
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!

Réponses (2)

Daniel Shub
Daniel Shub le 16 Mar 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.

Jan
Jan le 16 Mar 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.

Catégories

En savoir plus sur Parallel Computing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by