how can I use power of 24 cores in matlab?
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to use full power of my G9 server (has 24 cores and 64GB RAM) to run a matlab script.
My test code heres (original code is complex but it's like this):
s=0;
parfor i=1:10000
for j=1:10000
for k=1:10000
s=s+i;
end
end
end
disp(s);
CPU usage is 25%.
how can I use power of 24 cores in matlab and improve CPU usage to 50% or higher?
댓글 수: 1
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Clusters and Clouds에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!