Difference between revisions of "Abel use old"

From mn/bio/cees-bioinf
Jump to: navigation, search
Line 1: Line 1:
Introduction
+
Introduction  
 
 
  
 +
<br>
  
 +
We have been given a large allocation on Abel for computational work. This allocation runs out on April 30th, 2013. We can re-apply after that.
  
 +
<br>
  
 
Getting access  
 
Getting access  
Line 9: Line 11:
 
Fill out this form:<br>http://www.notur.no/quotas/apply/User-account-application-0612.pdf  
 
Fill out this form:<br>http://www.notur.no/quotas/apply/User-account-application-0612.pdf  
  
NOTES<br>11. I would like an account on the following resources: notur<br>12. Start date (yyyy-mm-dd): today End date (yyyy-mm-dd): April. 30th, 2012<br>13. Existing project (format nn****k for Notur):* NN9244K<br>14. Notur/NorStore user account (if you already have one): N/A<br> Otherwise provide preferred / local user name: _____________________ (max. 8 chars)<br>Please fill out your UiO user name kseniakh<br>15. If you want to use a grid certificate (GSI), provide the distinguished name (DN): N/A<br>Name of the project manager:* Kjetill Jakobsen  
+
NOTES<br>11. I would like an account on the following resources: notur<br>12. Start date (yyyy-mm-dd): today End date (yyyy-mm-dd): April. 30th, 2013<br>13. Existing project (format nn****k for Notur):* NN9244K<br>14. Notur/NorStore user account (if you already have one): N/A<br> Otherwise provide preferred / local user name: _____________________ (max. 8 chars)<br>Please fill out your UiO user name kseniakh<br>15. If you want to use a grid certificate (GSI), provide the distinguished name (DN): N/A<br>Name of the project manager:* Kjetill Jakobsen  
  
 
Give the form to Kjetill Jakobsen for submission. Ask Lex/karin for help.  
 
Give the form to Kjetill Jakobsen for submission. Ask Lex/karin for help.  
Line 54: Line 56:
  
 
</pre><pre>SLURM scripts
 
</pre><pre>SLURM scripts
 
 
</pre><pre>Information coming, until then see [http://www.uio.no/english/services/it/research/hpc/abel/help/user-guide/queue-system.html here].</pre>
 
</pre><pre>Information coming, until then see [http://www.uio.no/english/services/it/research/hpc/abel/help/user-guide/queue-system.html here].</pre>

Revision as of 12:29, 13 December 2012

Introduction


We have been given a large allocation on Abel for computational work. This allocation runs out on April 30th, 2013. We can re-apply after that.


Getting access

Fill out this form:
http://www.notur.no/quotas/apply/User-account-application-0612.pdf

NOTES
11. I would like an account on the following resources: notur
12. Start date (yyyy-mm-dd): today End date (yyyy-mm-dd): April. 30th, 2013
13. Existing project (format nn****k for Notur):* NN9244K
14. Notur/NorStore user account (if you already have one): N/A
Otherwise provide preferred / local user name: _____________________ (max. 8 chars)
Please fill out your UiO user name kseniakh
15. If you want to use a grid certificate (GSI), provide the distinguished name (DN): N/A
Name of the project manager:* Kjetill Jakobsen

Give the form to Kjetill Jakobsen for submission. Ask Lex/karin for help.


Using Abel

ssh abel.uio.no

Getting a single cpu for 11 hrs

qlogin --account nn9244k --nodes 1 --ntasks-per-node 1

Same, for 24 hrs

qlogin --account nn9244k --nodes 1 --ntasks-per-node 1 --time 24:00:00


NOTE you aresharing the node with others, do no use more than the number of cpus you asked for

NOTE a pipeline of unix commands may use one cpu per command:

grep something somefile | sort | uniq -c

This may use three cpus!


Getting a whole node with 16 CPUs and 64 GB RAM:

qlogin --account nn9244k --nodes 1 --ntasks-per-node 16 --time 24:00:00

Even though each node has 16 cpus, due to hyperthreading, you can run up to 32 processes simultaneously


You have a large work area available as well:

echo $SCRATCH
cd $SCRATCH

Using

squeue -u your username

will tell you the job ID, the work area is

/work/jobID.d

NOTE all data on this area is deleted once you log out


Quitting:

logout (or ctrl-d)

SLURM scripts
Information coming, until then see [http://www.uio.no/english/services/it/research/hpc/abel/help/user-guide/queue-system.html here].