How to take advantage of computer?

조회 수: 2 (최근 30일)
Ben Sheard
Ben Sheard 2017년 9월 12일
댓글: Ben Sheard 2017년 9월 13일
I'm using a HP Z840 workstation, it's a bit of a beast with two processors (E5-2643) and 128GB RAM. Is there anyway to speed up Matlab processes with this? Or does matlab just run as fast as it can? I'm aware the RAM lets me run larger arrays but is there anything else I can do? Or is it all done by default?
  댓글 수: 2
Cedric
Cedric 2017년 9월 12일
In your command window, type
ver
and check out if you have the parallel toolbox. It will be an entry like
Parallel Computing Toolbox Version X.Y (R201RR)
If so, it would be worth investing a little time studying what this toolbox offers (explicit parallelism), as mentioned by Edric below.
Ben Sheard
Ben Sheard 2017년 9월 13일
Thank you for the clarification, I'll take a look

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2017년 9월 12일
MATLAB runs as fast as it can. MATLAB will automatically use parallel computing for sufficiently large mathematical calculations that match some patterns.
Sometimes it helps to explicitly code parallel programs using parfor or spmd or similar. Not as often as you might guess at first, though: the communication overhead can make it slower.
  댓글 수: 3
Walter Roberson
Walter Roberson 2017년 9월 12일
You should consider reading Yair's book "Accelerating MATLAB Performance book"
Ben Sheard
Ben Sheard 2017년 9월 13일
Thank you for the answers, i'll look into it!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Parallel Computing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by