Versions Compared

Key

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

...

This will submit a job to LSF. The "pwd" command will print out the job's working directory, which should be the same directory where this job is submitted. The #BSUB -W180 directive tells LSF that the job's maximum run time limit (wall clock time) is 180 minutes. After that the job will be killed. If #BSUB -Wnnn isn't specified, your job get the default, which is 30 minutes. You can but don't have to specify a batch queue. If no queue is given at the submission time, LSF will choose one for your job according to job's run time limit.

 Check job status.

Check

...

status

...

of

...

all

...

my

...

job

$ bjobs

Of a specific job

$ bjobs -l <job ID>

To

...

kill

...

a

...

job.

$ bkill <job ID>

Refine batch submission 

...