How to make sure matlab uses all the cores on a remote cluster ?

1 次查看(过去 30 天)
Hi
I'm trying to run a code on a remote cluster and I would like to check that matlab uses all the cores I've requested (up to 12). From the time it takes to run, I think only one is used.
Does anybody have a simple script that I could run on the cluster (without hpc module) to check if the problem comes from my script itself or something else ?
Thanks
Stéphane

采纳的回答

Raymond Norris
Raymond Norris 2014-12-2
Try running the following code. Set N to the number of cores you want to run on. This should take ~4 seconds to run.
N = 12;
parpool(N)
tic
parfor idx = 1:2*N
pause(2)
end
toc

更多回答(1 个)

Stéphane
Stéphane 2014-12-3
Thanks :-)

类别

Help CenterFile Exchange 中查找有关 Clusters and Clouds 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by