MATLAB PARALLEL COMPUTING TOOLBOX - S Guide de l'utilisateur Page 458

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 656
  • Table des matières
  • DEPANNAGE
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 457
11 Functions — Alphabetical List
11-114
getCurrentWorker
Worker object currently running this session
Syntax
worker = getCurrentWorker
Arguments
worker The worker object that is currently evaluating the task that contains
this function.
Description
worker = getCurrentWorker returns the Parallel.Worker object representing the
MATLAB worker session that is currently evaluating the task function that contains this
call.
If the function runs in a MATLAB session that is not a worker, it returns an empty
result.
Examples
Find the Host property of a worker that runs a task. The file identifyWorkerHost.m
contains the following function code.
function localHost = identifyWorkerHost()
thisworker = getCurrentWorker; % Worker object
localHost = thisworker.Host; % Host property
end
Create a job with a task to execute this function on a worker and return the worker’s host
name. This example manually attaches the necessary code file.
c = parcluster();
Vue de la page 457
1 2 ... 453 454 455 456 457 458 459 460 461 462 463 ... 655 656

Commentaires sur ces manuels

Pas de commentaire