Is there a supported alternative to feature('numCores') to get the number of cores available for a parallel solution
조회 수: 14 (최근 30일)
이전 댓글 표시
I have an application that is compiled and distributed among a number of my office colleagues. Now we are trying to also set it up on a virtual machine to be accessed remotely by some other companies. During initialization the application is supposed to determine the number of cores available on the host machine using the undocumented command
avail_CPUs = feature('numCores');
The user can choose how many of the available cores they can use for the solution since the parfor will only run if they choose more than one.
When I tested the compiled on the virtual machine it gave me an error message. I can probably get around the problem by simply putting in a try - catch around this command. But it worries me to become dependent on undocumented commands. Is there an alternative? Also does a virtual machine by default only have one core?
댓글 수: 1
Raymond Norris
2022년 8월 15일
What error message was thrown? What threw it, MATLAB? shell script?
When a user builds their virtual machine, they'll specify how many cores, RAM, etc it has.
답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!