Wiki Page Content

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Revision 1 as of 2020-04-13 14:41:11


Submitting jobs


Whatever you read here may need some adjustment to fit your specific case. Do not hesitate to ask for some help.

Example of batch script

   1 #!/bin/bash
   2 
   3 #SBATCH -J test               # Job name
   4 #SBATCH -o /work/<<UID>>/job.%j.out   # Name of stdout output file (%j expands to jobId)
   5 #SBATCH -N 1                  # Total number of nodes requested
   6 #SBATCH -n 16                 # Total number of mpi tasks requested
   7 #SBATCH -t 01:30:00           # Run time (hh:mm:ss) - 1.5 hours
   8 
   9 # Run your command
  10 spades.py