How to limit CPU availabilty to Matlab

55 visualizaciones (últimos 30 días)
Sumesh KS
Sumesh KS el 14 de Jun. de 2022
Editada: Dhritishman el 15 de Jun. de 2022
When i running Matlab simulation on my Linux PC (20 cores), it consuming all cores, is there any way to limit CPU availability to Matlab (Use only 10 cores).

Respuestas (2)

Raymond Norris
Raymond Norris el 14 de Jun. de 2022
Try
maxNumCompThreads(10);

Dhritishman
Dhritishman el 15 de Jun. de 2022
Editada: Dhritishman el 15 de Jun. de 2022
LASTN = maxNumCompThreads(N)
sets the maximum number of computational threads to N, and returns the previous maximum number of computational threads, LASTN. N in your case is 10.
You can also use
LASTN = maxNumCompThreads('automatic')
which will set the maximum number of computational threads to the most desirable number according to MATLAB.
You can read more about it here:

Categorías

Más información sobre Manage Products en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by