From 680b5fde734212b4256d6848de1f784d0cf305ae Mon Sep 17 00:00:00 2001
From: Jan Siwiec <jan.siwiec@vsb.cz>
Date: Mon, 2 Sep 2024 10:34:56 +0200
Subject: [PATCH] Update allinea-ddt.md

---
 docs.it4i/software/debuggers/allinea-ddt.md | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/docs.it4i/software/debuggers/allinea-ddt.md b/docs.it4i/software/debuggers/allinea-ddt.md
index b435f97a5..82a4bced0 100644
--- a/docs.it4i/software/debuggers/allinea-ddt.md
+++ b/docs.it4i/software/debuggers/allinea-ddt.md
@@ -1,6 +1,3 @@
-!!!warning
-    This page has not been updated yet. The page does not reflect the transition from PBS to Slurm.
-
 # Allinea Forge (DDT, MAP)
 
 ## Introduction
@@ -57,7 +54,7 @@ Before debugging, you need to compile your code with these flags:
 
 ## Starting a Job With DDT
 
-Be sure to log in with an X window forwarding enabled. This could mean using the `-X` in the `ssh`:
+Be sure to log in with an X window forwarding enabled. This could mean using the `--x11` in the `ssh`:
 
 ```console
 $ ssh -X username@login1.karolina.it4i.cz
@@ -65,10 +62,10 @@ $ ssh -X username@login1.karolina.it4i.cz
 
 Another options is to access the login node using VNC. See the detailed information on how to [use graphic user interface][1].
 
-From the login node, an interactive session **with X windows forwarding** (the `-X` option) can be started by the following command:
+From the login node, an interactive session **with X windows forwarding** (the `-x11` option) can be started by the following command:
 
 ```console
-$ qsub -I -X -A NONE-0-0 -q qexp -l select=1:ncpus=128:mpiprocs=128,walltime=01:00:00
+$ salloc -A PROJECT_ID -p qcpu --nodes=1 --ntasks-per-node=128 --cpus-per-task=1 --time=01:00:00 --x11
 ```
 
 Then launch the debugger with the `ddt` command followed by the name of the executable to debug:
-- 
GitLab