Changes between Version 19 and Version 20 of Public/User_Guide/DEEP-EST_DAM


Ignore:
Timestamp:
Jul 14, 2022, 11:00:48 AM (23 months ago)
Author:
Jochen Kreutz
Comment:

Update Cuda Info

Legend:

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

    v19 v20  
    3838
    3939== Using Cuda ==
    40 To compile and run Cuda applications on the Nvidia V100 cards included in the DAM nodes, it is necessary to load the CUDA module:
     40
     41The first 12 DAM nodes are equipped with GPUs
     42
     43* `dp-dam[01-08]`: 1 x Nvidia V100
     44* `dp-dam[09-12]`: 2 x Nvidia V100
     45
     46Please use the `gres` option with `srun` if you would like to run Cuda programs, e.g. in an interactive session:
    4147
    4248{{{
    43 [deamicis1@deepv ~]$ ml CUDA
    44 [deamicis1@deepv ~]$ ml
     49srun -A deepsea -p dp-dam --gres=gpu:1 -t 1:0:0 --interactive --pty /bin/bash  # to start an interactive session on an DAM node exposig at least 1 GPU
     50srun -A deepsea -p dp-dam --gres=gpu:2 -t 1:0:0 --interactive --pty /bin/bash  # to start an interactive session on an DAM node exposig 2 GPUs
     51}}}
     52
     53To compile and run Cuda applications on the Nvidia V100 cards included in the DAM nodes, it is necessary to load the CUDA module. It's advised to use the 2022 Stage to avoid
     54[https://deeptrac.zam.kfa-juelich.de:8443/trac/wiki/Public/User_Guide/PaS#Softwareissues Nvidia driver missmatch] issues.
     55{{{
     56module --force purge
     57ml use $OTHERSTAGES
     58ml Stages/2022
     59ml CUDA
     60[kreutz1@deepv ~]$ ml
    4561
    4662Currently Loaded Modules:
    47   1) GCCcore/.8.3.0 (H)   2) binutils/.2.32 (H)   3) nvidia/.driver (H,g)   4) CUDA/10.1.105 (g)
     63  1) Stages/2022 (S)   2) nvidia-driver/.default (H,g,u)   3) CUDA/11.5 (g,u)
    4864
    4965  Where:
     66   S:  Module is Sticky, requires --force to unload or purge
    5067   g:  built for GPU
    51    H:             Hidden Module
     68   u:  Built by user
    5269}}}
    5370