Is there a supported alternative to feature('numCores') to get the number of cores available for a parallel solution

조회 수: 18 (최근 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
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개)

Bruno Luong
Bruno Luong 2022년 8월 15일
What about:
maxNumCompThreads()
ans = 2

카테고리

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

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by