Versions Compared

Key

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

...

Code Block
languagebash
titleCreate batch submission script for simple commands
launcher_creator.py -j simple.cmds -n simple -t 00:01:00 -a OTH21164 \
  -r core-ngs-class-0603

You should see output something like the following, and you should see a simple.slurm batch submission file in the current directory.

...

Code Block
languagebash
titleCreate batch submission script for simple commands
launcher_creator.py -j simple.cmds -n simple -t 00:01:00 -a OTH21164 \
  -r core-ngs-class-0603
  • The name of your commands file is given with the -j simple.cmds option.
  • Your desired job name is given with theĀ -n simple option.
    • The <job_name> (hereĀ simple) is the job name you will see in your queue.
    • By default a corresponding <job_name>.slurm batch file is created for you.
      • It contains the name of the commands file that the batch system will execute.

...

Code Block
languagebash
titleCreate batch submission script for wayness example
launcher_creator.py -j wayness.cmds -n wayness -w 4 -t 00:02:00 -a OTH21164 -r core-ngs-class-0603
sbatch wayness.slurm
showq -u

...