| 1 | = System usage = |
| 2 | |
| 3 | The system can be used through the PBS based batch system that is also used for the DEEP Cluster and Booster. You can request cluster nodes on the SDV with an interactive session like this: |
| 4 | |
| 5 | {{{ |
| 6 | kreutz@deepl:~ > qsub -I -l nodes=2:ppn=24:sdv,walltime=01:00:00 |
| 7 | qsub: waiting for job 76649.deepm to start |
| 8 | qsub: job 76649.deepm ready |
| 9 | |
| 10 | kreutz@deeper-sdv16:~ > |
| 11 | }}} |
| 12 | |
| 13 | When using a batch script, you have to adapt the -l option within your script. |
| 14 | |
| 15 | == Filesystems and local storage == |
| 16 | |
| 17 | The home filesystems on the SDV are provided via GPFS/NFS and hence the same as on the DEEP System. |
| 18 | The local storage system of the SDV running BeeGFS is available at |
| 19 | {{{ |
| 20 | /sdv-work |
| 21 | }}} |
| 22 | |
| 23 | This is NOT the same storage being used on the DEEP system. Both, the DEEP System and the DEEP-ER SDV have their own local storage. On the DEEP nodes it is |
| 24 | mounted to `/work` on the deeper-sdv nodes it can be found in `/sdv-work`. In addition both systems provide a work filesystem via GPFS, which is called |
| 25 | `/gpfs-work` and shared for both systems. But it should not be used for performance relevant applications since it is much slower than the local |
| 26 | storages. |
| 27 | |
| 28 | == Using the EXTOLL network == |
| 29 | |
| 30 | Since the `LD_LIBRARY_PATH` attracts incompatible EXTOLL libraries it as to be adapted manually. The following setup should work: |
| 31 | {{{ |
| 32 | module purge |
| 33 | module load gcc parastation/gcc-5.1.4-1_1_g064e3f7 |
| 34 | export LD_LIBRARY_PATH=/usr/local/parastation/pscom/lib64:${LD_LIBRARY_PATH} |
| 35 | export LD_LIBRARY_PATH=/direct/Software/Extoll/SDV/lib:$LD_LIBRARY_PATH |
| 36 | }}} |
| 37 | |
| 38 | == Using /nvme == |
| 39 | During job startup, all files of non-priviledged users within {{{/nvme}}} are removed. If you want to keep your files across consecutive jobs on a particular SDV node, add a list of filenames to {{{$HOME/.nvme_keep}}}: |
| 40 | {{{ |
| 41 | /nvme/tmp/myfile.A |
| 42 | /nvme/tmp/myfile.B |
| 43 | }}} |
| 44 | This will keep the files {{{/nvme/tmp/myfile.{A,B} }}} across two or more job runs in a row. |