Changes between Initial Version and Version 1 of Public/User_Guide/DEEP-EST_CM


Ignore:
Timestamp:
May 20, 2019, 2:31:06 PM (5 years ago)
Author:
Jochen Kreutz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Public/User_Guide/DEEP-EST_CM

    v1 v1  
     1= System usage =
     2
     3The DEEP-EST Clsuter Module (CM) can be used through the SLURM based batch system that is also used for (most of) the Software Development Vehicles (SDV). You can request CM cluster nodes (`dp-cn[01-05]` on the SDV with an interactive session like this:
     4
     5{{{
     6srun --partition=dp-cn -N 4 -n 8 --pty /bin/bash -i
     7srun ./hello_cluster
     8Hello World from processor dp-cn15, rank 2 out of 8
     9Hello World from processor dp-cn15, rank 3 out of 8
     10Hello World from processor dp-cn17, rank 6 out of 8
     11Hello World from processor dp-cn17, rank 7 out of 8
     12Hello World from processor dp-cn14, rank 0 out of 8
     13Hello World from processor dp-cn16, rank 4 out of 8
     14Hello World from processor dp-cn14, rank 1 out of 8
     15Hello World from processor dp-cn16, rank 5 out of 8
     16}}}
     17
     18
     19When using a batch script, you have to adapt the `--partition` option within your script: `--partition=dp-cn`
     20
     21== Filesystems and local storage ==
     22
     23The home filesystem on the DEEP-EST Cluster Module is provided via GPFS/NFS and hence the same as on (most of) the remaining compute nodes.
     24The local storage system of the CM running BeeGFS is available at
     25{{{
     26/work
     27}}}
     28There is a gateways being used to bridge between the Infiniband EDR used for the CM and the 40 GbE network the fileservers are connected to.
     29
     30This is NOT the same storage being used on the DEEP-ER SDV system. Both, the DEEP-EST prototype system and the DEEP-ER SDV have their own local storage.   
     31
     32It's possible to access the local storage of the DEEP-ER SDV (`/sdv-work`), but you have to keep in mind that the file servers of that storage can just be accessed through 1 GbE ! Hence, it should not be used for performance relevant applications since it is much slower than the DEEP-EST local storages mounted to `/work`.
     33
     34There is no node local storage available for the DEEP-EST Cluster nodes.
     35
     36== Multi-node Jobs ==
     37
     38The latest `pscom` version used in ParaStation MPI provides support for the Infiniband interconnect used in the DEEP-EST Cluster Module. Hence, loading the most recent ParaStation module will be enough to run multi-node MPI jobs over Infiniband:
     39
     40{{{
     41module load ParaStationMPI
     42}}}