General Usage of Quest: Difference between revisions

From csml-wiki.northwestern.edu
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:
# ### AUTOMATICALLY GENERATED BATCH FILE
# ### AUTOMATICALLY GENERATED BATCH FILE
#MOAB -q [queue_name]
#MOAB -q [queue_name]
#MOAB -l advres=grail
#MOAB -A b1011
#MOAB -A b1011
#MOAB -l walltime=[dd:hh:mm:ss]
#MOAB -l walltime=[dd:hh:mm:ss]

Revision as of 11:07, 16 July 2014

  • Login
    ssh [netid]@quest.it.northwestern.edu    
    

    where [netid] is your NETID. The first time you login, it will ask you to enter file in which to save the key and then to enter passphrase twice. Just press "enter" for these three questions and you should be able to login successfully.

    Our group folder is located in /projects/b1011/luijten-group

  • Example of job.mbs file
    # ### AUTOMATICALLY GENERATED BATCH FILE
    #MOAB -q [queue_name]
    #MOAB -A b1011
    #MOAB -l walltime=[dd:hh:mm:ss]
    
    # ###name of job
    #MOAB -N [name_of_job]
    
    # ### mail for begin/end/abort
    #MOAB -m ea
    #MOAB -M [email_address]                                                                                                      
    
    # ### number of nodes and processors per node
    #MOAB -l nodes=2:ppn=6
    
    # ### indicates that job should not rerun if it fails
    #MOAB -r n
    
    # ### stdout and stderr merged as stderr
    #MOAB -j eo
    
    # ### write stderr to file
    #MOAB -e log.err
    
    # ### the shell that interprets the job script
    #MOAB -S /bin/bash
    
    cd /projects/b1011/luijten-group/[job_location]
    time mpirun -np 12  [directory_name]/lmp2013_mpi -in input.dat
    
    if [ $? -eq 0 ] ; then
    touch COMPLETED
    fi   
    

    [queue_name] There are two options for queue name: collab or collab-preempt. Both of them have startup priority of 5000. Collab has maximum cores of 262 and maximum walltime of 7 days. There is no resource restrictions for collab-preempt, but note that queues ending in ‘-preempt’ contain jobs that can be interrupted and re-queued by jobs from a higher priority queue.

    [dd:hh:mm:ss] This is the maximum allowed running time for your job. dd: days; hh: hours; mm: minutes; ss: seconds.

    [name_of_job] This is the name of your job that will be showed in the queue.

    [email_address] This is the email address you used to receive the system notice when job begins, aborted or ended.

    [job_location] This is the address of the folder where your input file is located.

    [directory_name] This is the address of lmp2013_mpi file.

  • Submit jobs
    msb job.mbs
    
  • Check job status
    showq
    

    show all jobs

    showq -r
    

    show running jobs

    showq -i
    

    show idle jobs

    showq -w user=[netid]
    

    where [netid] is your NETID. This command will show only jobs belonging to user specified.

    qstat 
    

    show your own jobs

    checkjob [job_ID] 
    

    This command displays detailed information about a submitted job’s status and diagnostic information that can be useful for troubleshooting submission issues. It can also be used to obtain useful information about completed jobs such as the allocated nodes, resources used, and exit codes. NUIT recommends using the flag ‘-vvv’ or ‘-v –v –v’ to gather additional diagnostic information.