- Infos im HLRS Wiki sind nicht rechtsverbindlich und ohne Gewähr -
- Information contained in the HLRS Wiki is not legally binding and HLRS is not responsible for any damages that might result from its use -
Batch System PBSPro (Hawk): Difference between revisions
From HLRS Platforms
Jump to navigationJump to search
(Created page with "setup is just basic and it works for the test system only. More features, testing and productive like setup will be done in July. Here is an example for a Job using a single...") |
No edit summary |
||
Line 12: | Line 12: | ||
11.hawk-tds-pbs1 | 11.hawk-tds-pbs1 | ||
-bash-4.2$ | -bash-4.2$ | ||
an simple example batch script: | |||
-bash-4.2$ cat Job.hi.hpe | |||
#!/bin/bash | |||
#PBS -N Hi_Thomas | |||
#PBS -l select=16:mpiprocs=64 | |||
#PBS -l walltime=00:20:00 | |||
module load mpt | |||
cd ${HOME}/psrc | |||
mpirun ./hi.hpe | |||
sleep 5 | |||
-bash-4.2$ qsub Job.hi.hpe | |||
1019.hawk-tds-pbs1 | |||
-bash-4.2$ |
Revision as of 16:39, 4 July 2019
setup is just basic and it works for the test system only. More features, testing and productive like setup will be done in July.
Here is an example for a Job using a single node:
qsub -l nodes=2,walltime=1000 and this are the commands module load mpt cd psrc mpirun ./hi.hpe sleep 5 ^D (crtl-D) 11.hawk-tds-pbs1 -bash-4.2$
an simple example batch script:
-bash-4.2$ cat Job.hi.hpe #!/bin/bash #PBS -N Hi_Thomas #PBS -l select=16:mpiprocs=64 #PBS -l walltime=00:20:00 module load mpt cd ${HOME}/psrc mpirun ./hi.hpe sleep 5 -bash-4.2$ qsub Job.hi.hpe 1019.hawk-tds-pbs1 -bash-4.2$