MATLAB PARALLEL COMPUTING TOOLBOX - S User's Guide Page 633

  • Download
  • Add to my manuals
  • Print
  • Page
    / 656
  • Table of contents
  • TROUBLESHOOTING
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 632
submit
11-289
submit
Queue job in scheduler
Syntax
submit(j)
Arguments
j Job object to be queued.
Description
submit(j) queues the job object j in its cluster queue. The cluster used for this job was
determined when the job was created.
Examples
Find the MJS cluster identified by the cluster profile Profile1.
c1 = parcluster('Profile1');
Create a job object in this cluster.
j1 = createJob(c1);
Add a task object to be evaluated for the job.
t1 = createTask(j1,@rand,1,{8,4});
Queue the job object in the cluster for execution.
submit(j1);
Page view 632
1 2 ... 628 629 630 631 632 633 634 635 636 637 638 ... 655 656

Comments to this Manuals

No comments