Changes for page GPU Server

Last modified by Thomas Coelho (local) on 2025/08/11 14:24

From version 2.1
edited by Thomas Coelho (local)
on 2023/11/06 10:44
Change comment: There is no comment for this version
To version 15.1
edited by Thomas Coelho (local)
on 2025/08/11 14:23
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -4,11 +4,11 @@
4 4  
5 5  = The GPU Server =
6 6  
7 -The GPU machine is a two socket server with AMD EPYC 7313 processors. The processor has 16 Cores, actually with SMT enabled (32 Threads). It comes with 512 GB of memory and 2 x 4 TB U.3 (NVMe) SSDs as fast storage. There are** 8 AMD Instinct Mi 50** GPU cards for computing.
7 +The GPU machine is a two socket server with AMD EPYC 7313 processors. One processor a 16 Cores, actually with SMT enabled (32 Threads). It comes with 512 GB of memory and 2 x 4 TB U.3 (NVMe) SSDs as fast storage. There are** 8 AMD Instinct Mi 50** GPU cards for computing.
8 8  
9 9  Access is given by SLURM and the separate partition "gpu".
10 10  
11 -As software stack AMD ROCm is installed. This supports the ROCm and openCL interface.
11 +As software stack AMD ROCm is installed. This supports the ROCm and openCL interface. Current ROCm Stack is version 6.3.3. This is the last ROCm stack which supports our Mi50 Hardware. There will be no more Updates.
12 12  
13 13  (% class="box infomessage" %)
14 14  (((
... ... @@ -40,11 +40,30 @@
40 40  
41 41  Install Pytorch:
42 42  
43 +{{code language="bash"}}
44 +pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.0
43 43  
46 +
47 +{{/code}}
48 +
49 +At time of writing it's not available for 6.1. Please check the pytorch Website for updates.
50 +
51 +You can test the installation with
52 +
53 +{{code language="python"}}
54 +import torch
55 +
56 +print(torch.cuda.is_available())
57 +
58 +{{/code}}
59 +
44 44  == Links ==
45 45  
62 +GPU Cards: [[https:~~/~~/www.amd.com/en/products/professional-graphics/instinct-mi50>>https://www.amd.com/en/products/professional-graphics/instinct-mi50]]
63 +
46 46  ROCm documentation: [[https:~~/~~/rocm.docs.amd.com/en/latest/rocm.html>>https://rocm.docs.amd.com/en/latest/rocm.html]]
47 47  
66 +Pytorch: [[https:~~/~~/pytorch.org/>>https://pytorch.org/]]
48 48  
49 49  
50 50