Difference between revisions of "Matlab workers"

From Dynamo
Jump to navigation Jump to search
(Created page with "Matlab workers represent threads used by Matlab (or the MCR libraries when using the ''Dynamo'' standalone) when a computation is launched in parallel modus on a single node....")
 
Line 5: Line 5:
  
 
== In Linux ==
 
== In Linux ==
 +
In the system terminal, write:
 +
 
== In the Mac ==  
 
== In the Mac ==  
 +
In the system terminal, write:
 +
 
<tt> sysctl -a | grep machdep.cpu | grep core_count  </tt>  
 
<tt> sysctl -a | grep machdep.cpu | grep core_count  </tt>  
 +
 
<tt> sysctl -a | grep machdep.cpu | grep thread_count </tt>
 
<tt> sysctl -a | grep machdep.cpu | grep thread_count </tt>

Revision as of 14:46, 23 November 2016

Matlab workers represent threads used by Matlab (or the MCR libraries when using the Dynamo standalone) when a computation is launched in parallel modus on a single node. A parallel computation in Dynamo should not use more matlab workers than the number of physical cores available in your system.

Find out the number of cores in a system

In Linux

In the system terminal, write:

In the Mac

In the system terminal, write:

sysctl -a | grep machdep.cpu | grep core_count

sysctl -a | grep machdep.cpu | grep thread_count