Checking a cluster profile with commands in Matlab

I need to check the cluster profile in Matlab. The official documentation shows how to do this using the GUI:

enter image description here

This is nice, but some of the Matlabs I use are OS without a GUI. How can I check the cluster profile only with commands?

+4
source share
1 answer

You should look into the Validator class (example path for MATLAB 2014a):

..\MATLAB\R2014a\toolbox\distcomp\cluster\+parallel\+internal\+validator\Validator.m

It accurately shows what happens during the verification process. I would suggest setting breakpoints in different methods and observing the transferred data, or trying to find where they are called from and use which parameters.

, , (. ), :

  • parcluster.m -\MATLAB\R2014a\toolbox\distcomp\cluster
  • createJob.m -\MATLAB\R2014a\toolbox\distcomp\
  • createCommunicatingJob.m -\MATLAB\R2014a\toolbox\distcomp\cluster + parallel\@Cluster

, !

enter image description here

+1

Source: https://habr.com/ru/post/1544951/


All Articles