Using Slurm: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
== submitting jobs: sbatch == | == submitting jobs: sbatch == | ||
Consider this simple python3 script that should calculate Pi up to 1 million digits: | |||
<source lang='python'> | <source lang='python'> | ||
from decimal import * | from decimal import * | ||
| Line 14: | Line 9: | ||
print(str(p)[:10000002]) | print(str(p)[:10000002]) | ||
</source> | </source> | ||
In order for this script to run, the first thing that is needed is that Python3, which is not the default Python version on the cluster, is load into your environment. Availability of (different versions of) software can be checked by the following command: | |||
module avail | |||
In the list you should note that python3 is indeed available to be loaded, which then can be loaded with the following command: | |||
module load python/3.3.3 | |||
<source lang='bash'> | <source lang='bash'> | ||
Revision as of 10:15, 23 November 2013
submitting jobs: sbatch
Consider this simple python3 script that should calculate Pi up to 1 million digits: <source lang='python'> from decimal import * D=Decimal getcontext().prec=10000000 p=sum(D(1)/16**k*(D(4)/(8*k+1)-D(2)/(8*k+4)-D(1)/(8*k+5)-D(1)/(8*k+6))for k in range(411)) print(str(p)[:10000002]) </source>
In order for this script to run, the first thing that is needed is that Python3, which is not the default Python version on the cluster, is load into your environment. Availability of (different versions of) software can be checked by the following command:
module avail
In the list you should note that python3 is indeed available to be loaded, which then can be loaded with the following command:
module load python/3.3.3
<source lang='bash'>
- !/bin/bash
- #SBATCH --time=100
- SBATCH --ntasks=1
- SBATCH --output=output_%j.txt
- SBATCH --error=error_output_%j.txt
- SBATCH --job-name=calc_pi.py
- SBATCH --partition=research
time python3 calc_pi.py </source>
JOBID PARTITION NAME USER ST TIME NODES NODELIST(REASON) 3347 research calc_pi. megen002 R 0:03 1 node049