Welcome to the HPC @IMG @UNIVIE and please follow these steps to become a productive member of our department and make good use of the computer resources.
Efficiency is keen.
System information
Name
Value
Product
G294-Z42-AAP2-000
CPU model
AMD EPYC 9355 32-Core Processor
Cores
2 CPU, 32 physical cores per CPU, total 64 logical CPU units
Currently, there are two CUDA versions installed, but since GPU applications depend a lot on the exact version of the library, please report any missing versions.
The current configuration splits this rather large GPU into 3 logical parts, which can be undone at any time in the future to allow one user to take it all:
So there is one larger part (48GB) and two samller parts (24GB), which are so called MIG (Multi Instance GPU) and each MIG can mostly be used by one application. It might be possible to load two or mor applications into one mig, but make sure that these do not interfere with the memory available to those. As on and off loading to GPU memory is a performance penalty, which might increase your overall runtime. For HPC applications, this is different, as one use would reserve a whole GPU or dozens.
[user@cirrus]# userservices gpu[USERSERVICE]gpu
GPU0:NVIDIARTXPRO6000BlackwellServerEdition(UUID:GPU-7d3e3a53-6844-27b1-0690-856fe0deab22)MIG2g.48gbDevice0:(UUID:MIG-331f1801-304d-5ca7-934f-4e9ffda7f06a)MIG1g.24gbDevice1:(UUID:MIG-c0f972a7-9639-55fb-81f5-3741fa7b92a0)MIG1g.24gbDevice2:(UUID:MIG-715e42be-6ee8-5460-88ae-fb2d567cc82f)################################################################################
UserServices-GPUoverview
userservicesgpu-l
Options:
-lListavailableGPUs
-vShowGPUdriverversion
Examples:
# List available GPUs (here 1GPU, but split into 3 instances for parallel use)userservicesgpu-lornvidia-smi-L
GPU0:NVIDIARTXPRO6000BlackwellServerEdition(UUID:GPU-7d3e3a53-6844-27b1-0690-856fe0deab22)MIG2g.48gbDevice0:(UUID:MIG-331f1801-304d-5ca7-934f-4e9ffda7f06a)MIG1g.24gbDevice1:(UUID:MIG-c0f972a7-9639-55fb-81f5-3741fa7b92a0)MIG1g.24gbDevice2:(UUID:MIG-715e42be-6ee8-5460-88ae-fb2d567cc82f)# Show what is running on the GPUsnvidia-smi
UsageExample:
# How to use the GPUs?# This makes use of one of the MIG - GPU instances.CUDA_VISIBLE_DEVICES=MIG-331f1801-304d-5ca7-934f-4e9ffda7f06apythonmy_gpu_script.py
# monitor with nvidia-smi -l################################################################################
Author:MB
Date:14.01.2026
Contact:it.img-wien@univie.ac.at
Path:/home/swd/userservices/userservices.d
################################################################################
This should give you an idea on how to run an application with the GPU. An example is given here:
gpu example
12
# This selects one MIG for the application[user@cirrus]# CUDA_VISIBLE_DEVICES=MIG-331f1801-304d-5ca7-934f-4e9ffda7f06a python my_gpu_script.py
Currently the driver 595.45.04 is installed as well as CUDA 13.1 from the repository. This might change in the future to make sure that the GPU can reach it's full potential as the driver evolves.