Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

Follow the following procedures to setup an account for FAU clusters

1. Try and login to the FAU HPC portal with your university name (Use “Another institution” button)

In case there are missing attributes, you will need to contact your local IT support responsible for eduGAIN (see eduGAIN organizations).

In case you can not find your university, please let us know ASAP so we can handle this.

We will collect one email address (university email that can be login to eduGAIN) per team to create the account, you will receive the invitation. That email address must be able to login via eduGAIN.

2. After you got assigned to the ISC SCC project, you need to add a SSH key to be able to access the clusters. To do so, login to the portal and click on the User tab in the top area.

You will need to upload your 4K public ssh key to the portal. You can upload multiple keys per team/user.

$ ssh-keygen -t rsa -b 4096
...
$ cat .ssh/id_rsa_4k.pub

3. Once we will supply the access, you will need to login to the hpc-mover.rrze.uni-erlangen.de server on port 22322 with your given username (found in the hpc portal).

Setup your ssh config file to make it easier:

$ cat .ssh/config

Host fau
    HostName hpc-mover.rrze.uni-erlangen.de
    Port 22322
    User <user id (b154dc##)>
    IdentityFile ~/.ssh/id_rsa_4k
    IdentitiesOnly yes
    PasswordAuthentication no
    PreferredAuthentications publickey

4. Login to fau clusters. Make sure you are on a machine with an IP you provided us.

$ ssh fau
======================================================================

               *** Welcome at NHR@FAU ***

You are on a dedicated login node for ISC2023 - SCC.
The hardware is identical to Fritz, however, the software installation
is different. Thus, much of the information form
https://hpc.fau.de/systems-services/documentation-instructions/clusters/fritz-cluster/
does not apply to ISC2023 - SCC !!!

See https://hpcadvisorycouncil.atlassian.net/wiki/spaces/HPCWORKS/pages/2977628161/ISC23+SCC+Getting+Started+with+FAU+Clusters
instead for software related topics.

======================================================================

Last login: <DATE> from <IP>
<userid>@f0101:~$

5. You can see available nodes using Slurm:

$ssh fau                                                                                                       
===============================================================================                                                        
<MOTD>                                                                            
....
===============================================================================

<userid>@f0101:~$ sinfo
PARTITION AVAIL  TIMELIMIT  NODES  STATE NODELIST
work*        up    6:00:00      1  alloc f0102
work*        up    6:00:00      4   idle f[0103-0106]
<userid>@f0101:~$

The number of total nodes might change throughout the competition.
The time limit for jobs is 6 hours and the default allocation time (without the --time flag) is 1 hour.

6. On both the head node and the compute nodes, the Modules package is available. You can print available module with module avail, load/unload modules with module load <pkg> and module unload <pkg>, respectively, and list loaded modules with module list:

<userid>@f0101:~$ module av
--------------------------------------------------- /apps/modules/data/applications ---------------------------------------------------
quantum-espresso/7.1-gcc12.2.0-impi-mkl  quantum-espresso/7.1-intel2021.7.0-impi-mkl
quantum-espresso/7.1-gcc12.2.0-ompi-mkl  quantum-espresso/7.1-intel2021.7.0-ompi-mkl

----------------------------------------------------- /apps/modules/data/compiler -----------------------------------------------------
gcc/9.5.0  gcc/10.4.0  gcc/11.3.0  gcc/12.2.0  intel/2021.7.0

--------------------------------------------------- /apps/modules/data/development ----------------------------------------------------
intelmpi/2021.7.1       openmpi/4.1.4-gcc9.5.0   openmpi/4.1.4-gcc11.3.0  openmpi/4.1.4-intel2021.7.0
openmpi/4.1.4-gcc8.5.0  openmpi/4.1.4-gcc10.4.0  openmpi/4.1.4-gcc12.2.0

---------------------------------------------------- /apps/modules/data/libraries -----------------------------------------------------
boost/1.80.0                fftw/3.3.10-intel2021.7.0-impi  hdf5/1.12.2-gcc12.2.0-ompi      mkl/2022.2.1
fftw/3.3.10-gcc12.2.0-impi  fftw/3.3.10-intel2021.7.0-ompi  hdf5/1.12.2-intel2021.7.0-impi  tbb/2021.7.1
fftw/3.3.10-gcc12.2.0-ompi  hdf5/1.12.2-gcc12.2.0-impi      hdf5/1.12.2-intel2021.7.0-ompi

------------------------------------------------------ /apps/modules/data/tools -------------------------------------------------------
autoconf/2.69  automake/1.16.5  cmake/3.24.3  git/2.38.1  hwloc/2.8.0  likwid/5.2.2  m4/1.4.19  papi/6.0.0.1

----------------------------------------------- /apps/hpcx/2.13.1-gcc-inbox/modulefiles -----------------------------------------------
hpcx  hpcx-debug  hpcx-debug-ompi  hpcx-mt  hpcx-mt-ompi  hpcx-ompi  hpcx-prof  hpcx-prof-ompi  hpcx-stack
<userid>@f0101:~$ module load gcc/12.2.0
<userid>@f0101:~$ module li
Currently Loaded Modulefiles:
 1) gcc/12.2.0
<userid>@f0101:~$

7. When submitting a job, you can specify the time with the --time option.
If you want to use performance counters (e.g., using PAPI or LIKWID), it is necessary to specify the hwperf constraint (-C hwperf).
For a fixed clock frequency, you may use the option
--cpu-freq=<MIN_CLOCK_kHZ>-<MAX_CLOCK_kHZ>[:<GOVERNOR>]. Note that this frequency is only set if you run your binary within the job using the srun command as a wrapper.

For a two-hour 4 node interactive job, e.g., you can use this command:

<userid>@f0101:~$ salloc -N 4 --time=02:00:00
salloc: Granted job allocation 42
salloc: Waiting for resource configuration
salloc: Nodes f[0102-0105] are ready for job
### Starting TaskPrologue of job 42 on f0102 at Fri Feb 10 11:57:47 CET 2023
#   SLURM_JOB_NODELIST=f[0102-0105]
#   SLURM_JOB_NUM_NODES=4
#   SLURM_NTASKS=
#   SLURM_NPROCS=
#   SLURM_TASKS_PER_NODE=72(x4)
#   SLURM_JOB_CPUS_PER_NODE=72(x4)
#   SLURM_EXPORT_ENV=
Running on cores 0-71 with governor powersave
### Finished TaskPrologue
<userid>@f0102:~$                                                                                                          
<userid>@f0102:~$ ibstat                                                                                                               
CA 'mlx5_0'
        CA type: MT4123
        Number of ports: 1
        Firmware version: 20.30.1004
        Hardware version: 0
        Node GUID: 0x08c0eb03002c63c4
        System image GUID: 0x08c0eb03002c63c4
        Port 1:
                State: Active
                Physical state: LinkUp
                Rate: 100
                Base lid: 221
                LMC: 0
                SM lid: 1
                Capability mask: 0x2659e848
                Port GUID: 0x08c0eb03002c63c4
                Link layer: InfiniBand
<userid>@f0102:~$ lscpu                                                                                                                
Architecture:        x86_64                                                                                                            
CPU op-mode(s):      32-bit, 64-bit                                                                                                    
Byte Order:          Little Endian                                                                                                     
CPU(s):              72                                                                                                                
On-line CPU(s) list: 0-71                                                                                                              
Thread(s) per core:  1                                                                                                                 
Core(s) per socket:  36                                                                                                                
Socket(s):           2
NUMA node(s):        4
Vendor ID:           GenuineIntel
CPU family:          6
Model:               106
Model name:          Intel(R) Xeon(R) Platinum 8360Y CPU @ 2.40GHz
Stepping:            6
CPU MHz:             2400.000
CPU max MHz:         3500.0000
CPU min MHz:         800.0000
BogoMIPS:            4800.00
Virtualization:      VT-x
L1d cache:           48K
L1i cache:           32K
L2 cache:            1280K
L3 cache:            55296K
NUMA node0 CPU(s):   0-17
NUMA node1 CPU(s):   18-35
NUMA node2 CPU(s):   36-53
NUMA node3 CPU(s):   54-71
Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 
ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid 
aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic 
movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 invpcid_single ssbd 
mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl 
xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect wbnoinvd dtherm ida arat pln 
pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni 
avx512_bitalg tme avx512_vpopcntdq la57 rdpid fsrm md_clear pconfig flush_l1d arch_capabilities
<userid>@f00102:~$ module load likwid && likwid-topology -g
--------------------------------------------------------------------------------                                                                                                                                                                                                                                                                                                                                                      CPU name:       Intel(R) Xeon(R) Platinum 8360Y CPU @ 2.40GHz
CPU type:       Intel Icelake SP processor
CPU stepping:   6
********************************************************************************
Hardware Thread Topology
********************************************************************************
Sockets:                2
Cores per socket:       36
Threads per core:       1
--------------------------------------------------------------------------------
HWThread        Thread        Core        Die        Socket        Available
0               0             0           0          0             *
1               0             1           0          0             *
2               0             2           0          0             *
3               0             3           0          0             *
4               0             4           0          0             *
... # more cores
70              0             70          0          1             *
71              0             71          0          1             *
--------------------------------------------------------------------------------
Socket 0:               ( 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 )
Socket 1:               ( 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 )
--------------------------------------------------------------------------------
********************************************************************************
Cache Topology
********************************************************************************
Level:                  1
Size:                   48 kB
Cache groups:           ( 0 ) ( 1 ) ( 2 ) ( 3 ) ( 4 ) ( 5 ) ( 6 ) ( 7 ) ( 8 ) ( 9 ) ( 10 ) ( 11 ) ( 12 ) ( 13 ) ( 14 ) ( 15 ) ( 16 ) ( 17 ) ( 18 ) ( 19 ) ( 20 ) ( 21 ) ( 22 ) ( 23 ) ( 24 ) ( 25 ) ( 26 ) ( 27 ) ( 28 ) ( 29 ) ( 30 ) ( 31 ) ( 32 ) ( 33 ) ( 34 ) ( 35 ) ( 36 ) ( 37 ) ( 38 ) ( 39 ) ( 40 ) ( 41 ) ( 42 ) ( 43 ) ( 44 ) ( 45 ) ( 46 ) ( 47 ) ( 48 ) ( 49 ) ( 50 ) ( 51 ) ( 52 ) ( 53 ) ( 54 ) ( 55 ) ( 56 ) ( 57 ) ( 58 ) ( 59 ) ( 60 ) ( 61 ) ( 62 ) ( 63 ) ( 64 ) ( 65 ) ( 66 ) ( 67 ) ( 68 ) ( 69 ) ( 70 ) ( 71 )
--------------------------------------------------------------------------------
Level:                  2
Size:                   1.25 MB
Cache groups:           ( 0 ) ( 1 ) ( 2 ) ( 3 ) ( 4 ) ( 5 ) ( 6 ) ( 7 ) ( 8 ) ( 9 ) ( 10 ) ( 11 ) ( 12 ) ( 13 ) ( 14 ) ( 15 ) ( 16 ) ( 17 ) ( 18 ) ( 19 ) ( 20 ) ( 21 ) ( 22 ) ( 23 ) ( 24 ) ( 25 ) ( 26 ) ( 27 ) ( 28 ) ( 29 ) ( 30 ) ( 31 ) ( 32 ) ( 33 ) ( 34 ) ( 35 ) ( 36 ) ( 37 ) ( 38 ) ( 39 ) ( 40 ) ( 41 ) ( 42 ) ( 43 ) ( 44 ) ( 45 ) ( 46 ) ( 47 ) ( 48 ) ( 49 ) ( 50 ) ( 51 ) ( 52 ) ( 53 ) ( 54 ) ( 55 ) ( 56 ) ( 57 ) ( 58 ) ( 59 ) ( 60 ) ( 61 ) ( 62 ) ( 63 ) ( 64 ) ( 65 ) ( 66 ) ( 67 ) ( 68 ) ( 69 ) ( 70 ) ( 71 )
--------------------------------------------------------------------------------
Level:                  3
Size:                   54 MB
Cache groups:           ( 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 ) ( 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 )
--------------------------------------------------------------------------------
********************************************************************************
NUMA Topology
********************************************************************************
NUMA domains:           4
--------------------------------------------------------------------------------
Domain:                 0
Processors:             ( 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 )
Distances:              10 11 20 20
Free memory:            63776.2 MB
Total memory:           64135.9 MB
--------------------------------------------------------------------------------
Domain:                 1
Processors:             ( 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 )
Distances:              11 10 20 20
Free memory:            64047.4 MB
Total memory:           64507.9 MB
--------------------------------------------------------------------------------
Domain:                 2
Processors:             ( 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 )
Distances:              20 20 10 11
Free memory:            64336.1 MB
Total memory:           64507.9 MB
--------------------------------------------------------------------------------
Domain:                 3
Processors:             ( 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 )
Distances:              20 20 11 10
Free memory:            64116.5 MB
Total memory:           64463.4 MB
--------------------------------------------------------------------------------


********************************************************************************
Graphical Topology
********************************************************************************
Socket 0:
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| |   0   | |   1   | |   2   | |   3   | |   4   | |   5   | |   6   | |   7   | |   8   | |   9   | |   10  | |   11  | |   12  | |   13  | |   14  | |   15  | |   16  | |   17  | |   18  | |   19  | |   20  | |   21  | |   22  | |   23  | |   24  | |   25  | |   26  | |   27  | |   28  | |   29  | |   30  | |   31  | |   32  | |   33  | |   34  | |   35  | |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ |
| |                                                                                                                                                                                54 MB                                                                                                                                                                                | |
| +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Socket 1:
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| |   36  | |   37  | |   38  | |   39  | |   40  | |   41  | |   42  | |   43  | |   44  | |   45  | |   46  | |   47  | |   48  | |   49  | |   50  | |   51  | |   52  | |   53  | |   54  | |   55  | |   56  | |   57  | |   58  | |   59  | |   60  | |   61  | |   62  | |   63  | |   64  | |   65  | |   66  | |   67  | |   68  | |   69  | |   70  | |   71  | |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | | 48 kB | |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |  1 MB | |
| +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ |
| +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ |
| |                                                                                                                                                                                54 MB                                                                                                                                                                                | |
| +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

For more information about batch processing, see https://hpc.fau.de/systems-services/documentation-instructions/batch-processing/.

More info :

  • No labels