Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To use the GPUs:

  1. Provision new Centos or Ubuntu instance.
    Image RemovedImage Added
  2. Select layout ending with eumetsat-gpu and one of the plans listed above. Beside that, configure your instance as preferred and continue deployment process.
  3. Once VM is deployed, you can verify GPUs for example using nvidia-smi program from command line (see below for confirming library installations and drivers).

...

Code Block
languagebash
titleAdding NVIDIA tools to path
# NVIDIA tools are available in /usr/local/cuda-1112.82/bin/. You can add them to PATH following:
$ export PATH=$PATH:/usr/local/cuda-1112.82/bin/

Installing Libraries

...

Code Block
languagebash
titleConda installation
# install miniforge (or any anacondaconda manager)
$ wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh

# make it executable
$ chmod +x Miniforge3-Linux-x86_64.sh

# run and install the executable
$ ./Miniforge3-Linux-x86_64.sh

...