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

18 views (last 30 days)
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 Comment
Raymond Norris
Raymond Norris on 15 Aug 2022
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.

Sign in to comment.

Answers (1)

Bruno Luong
Bruno Luong on 15 Aug 2022
What about:
maxNumCompThreads()
ans = 2

Categories

Find more on MATLAB Parallel Server in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!