what are the System Requirements Need for my parallel program speed?
조회 수: 1(최근 30일)
표시 이전 댓글
Sir,
Now I am using MDCS 8 workers, but I'm using two system only. I have start a 4 worker for as each system. But no improvement for my parallel program. What are the system and hardware requirements for need in my parallel job sir. I have no knowledge about hardware. So please any one answer my question.
Thank you so much.
답변(1개)
Walter Roberson
2012년 7월 2일
If matlabpool() will open a pool with more than one worker for you, then your hardware meets the requirements.
The hardware requirements are relatively simple: your CPU(s) must have multiple cores, or must hyperthread, or else you must have multiple CPUs.
You may also need up to 2 Gb of memory per worker.
These are the hardware requirements to use parallel processing, but meeting those requirements does not guarantee that you will be able to get any performance gain from parallel processing, no matter how cleverly you write your code in MATLAB. There are some kinds of problems that cannot gain any real advantage without specialized memory systems.
댓글 수: 0
참고 항목
범주
Find more on Parallel Computing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!