Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now you should see a local file called tritrig.json which contains information for running 1000 jobs of this type.

Running Jobs on the Batch System

Automatically submitting jobs to the batch system requires that you have created a workflow from your job parameters (covered in last section).

To submit all jobs in a workflow, execute a command similar to the following:

Code Block
languagebash
 hps-mc-batch -l $PWD/logs ./tritrig.json

You can also submit only certain job ids using a syntax like this to list specific job IDs:

Code Block
languagebash
hps-mc-batch -l $PWD/logs ./tritrig.json 1000 2000 [etc.]

Finally, it is possible to submit a range of job IDs:

Code Block
languagebash
hps-mc-batch -l $PWD/logs -r 0:99 ./tritrig.json

This will submit all the jobs IDs from 0 to 99 in the workflow.