Changes between Version 41 and Version 42 of RemoteJobs


Ignore:
Timestamp:
Apr 21, 2014, 11:35:44 AM (10 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RemoteJobs

    v41 v42  
    7474The following example submits a 10-job batch:
    7575{{{
     76$req = new StdClass;
    7677$req->project = "http://foo.bar.edu/test/";
    7778$req->authenticator = "xxx";
     
    7980$req->jobs = array();
    8081
     82$f = new StdClass;
    8183$f->mode = "local_staged";
    8284$f->source = "filename.dat";
     
    8486
    8587for ($i=10; $i<20; $i++) {
     88    $job = new StdClass;
    8689    $job->rsc_fpops_est = $i*1e9;
    8790    $job->command_line = "--t $i";