[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
gpu [2018/04/16 11:35]
kocmanek [Performance tests]
gpu [2018/05/30 09:54]
vodrazka [Set-up CUDA and CUDNN]
Line 12: Line 12:
 | dll5 |  GeForce GTX 1080 Ti |  384.69 |  6.1 |  10 |  11 |  250 | | dll5 |  GeForce GTX 1080 Ti |  384.69 |  6.1 |  10 |  11 |  250 |
 | dll6 |  GeForce GTX 1080 Ti |  384.69 |  6.1 |  9 |  11 |  122 | | dll6 |  GeForce GTX 1080 Ti |  384.69 |  6.1 |  9 |  11 |  122 |
-| gpu |  GeForce GTX TITAN Z |  381.22 |  3.5 |  2 |  6 |  31 |+titan-gpu |  GeForce GTX TITAN Z |  381.22 |  3.5 |  2 |  6 |  31 |
 | iridium |  Quadro K2000 |  367.48 |  3.0 |  1 |  2 |  504 | | iridium |  Quadro K2000 |  367.48 |  3.0 |  1 |  2 |  504 |
 | kronos |  GeForce GTX 1080 Ti |  384.81 |  6.1 |  1 |  11 |  125 | | kronos |  GeForce GTX 1080 Ti |  384.81 |  6.1 |  1 |  11 |  125 |
Line 64: Line 64:
 You also need to use ''qsub -q gpu.q@dll[256]'' because only those machines have drivers which support CUDA 9. You also need to use ''qsub -q gpu.q@dll[256]'' because only those machines have drivers which support CUDA 9.
  
-**Testing configuration (so far on twister2 only)**+**THE NEW CLUSTER (SGE 8.1.9)**
  
-Multiple versions of ''cuda'' and ''cudnn'' can be accessed in ''/opt''. +Multiple versions of ''cuda'' can be accessed in ''/opt/cuda''**Compared to the old cluster there is a difference in setting the CUDA_DIR_OPT variable!!**
-System default version for both libraries is configured in ''/etc/ld.so.conf.d/cuda.conf'' as:+
  
-  /opt/cuda/lib64 +You need to set library path from your ''~/.bashrc'':
-  /opt/cuda/extras/CUPTI/lib64 +
-  /opt/cudnn/lib64 +
- +
-Actual version used depends on the link in ''/opt''. For example: +
- +
-  ls -l /opt +
-  ... +
-  lrwxrwxrwx 1 root root  8 dub  9 12:30 cuda -> cuda-9.0 +
-  lrwxrwxrwx 1 root root  9 dub  9 12:32 cudnn -> cudnn-7.1 +
-  ... +
-   +
-This means that the system is using ''cuda 9.0'' and ''cudnn 7.1''+
- +
-If system default version does not work for you, you can set library path from your ''~/.bashrc''.+
  
 +  CUDNN_version=7.0
 +  CUDA_version=9.0
 +  CUDA_DIR_OPT=/opt/cuda/$CUDA_version
 +  if [ -d "$CUDA_DIR_OPT" ] ; then
 +    CUDA_DIR=$CUDA_DIR_OPT
 +    export CUDA_HOME=$CUDA_DIR
 +    export THEANO_FLAGS="cuda.root=$CUDA_HOME,device=gpu,floatX=float32"
 +    export PATH=$PATH:$CUDA_DIR/bin
 +    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CUDA_DIR/cudnn/$CUDNN_version/lib64:$CUDA_DIR/lib64
 +    export CPATH=$CUDA_DIR/cudnn/$CUDNN_version/include:$CPATH
 +  fi
  
 +  * When not using Theano, just Tensorflow this can be simplified to ''export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/cuda/9.0/cudnn/7.0/lib64:/opt/cuda/8.0/lib64''.
  
 +  * There is no default and you always need to set ''LD_LIBRARY_PATH'' to suit explicitly.
  
 +  * Note that ''cudnn'' library is compiled for specific version of ''cuda''. If you need specific version of ''cudnn'', you can look in ''/opt/cuda/$CUDA_version/cudnn/'' whether it is available for given ''$CUDA_version''.
  
  

[ Back to the navigation ] [ Back to the content ]