Azzera filtri
Azzera filtri

Multi processor

1 visualizzazione (ultimi 30 giorni)
Nello Troccia
Nello Troccia il 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!

Risposte (2)

Daniel Shub
Daniel Shub il 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 il 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.

Categorie

Scopri di più su Parallel Computing in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by