From 2c005269b5ec67a138331b58ec2d06cd38c44382 Mon Sep 17 00:00:00 2001 From: Jan Siwiec <jan.siwiec@vsb.cz> Date: Mon, 2 Sep 2024 10:15:24 +0200 Subject: [PATCH] Update insitu.md --- docs.it4i/software/viz/insitu.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs.it4i/software/viz/insitu.md b/docs.it4i/software/viz/insitu.md index ba97ffa05..238ba59fa 100644 --- a/docs.it4i/software/viz/insitu.md +++ b/docs.it4i/software/viz/insitu.md @@ -1,6 +1,3 @@ -!!!warning - This page has not been updated yet. The page does not reflect the transition from PBS to Slurm. - # In Situ Visualization ## Introduction @@ -84,13 +81,13 @@ Whether you use the client-server mode or VNC for ParaView, you have to allocate For the client-server mode of ParaView we allocate the resources by ```console -$ qsub -I -q qprod -A PROJECT-ID -l select=2 +$ salloc -p qcpu -A PROJECT_ID --nodes=2 ``` -In the case of VNC connection, we use X11 forwarding by the `-X` option to allow the graphical environment on the interactive session: +In the case of VNC connection, we use X11 forwarding by the `--x11` option to allow the graphical environment on the interactive session: ```console -$ qsub -IX -q qprod -A PROJECT-ID -l select=2 +$ salloc -p qcpu -A PROJECT_ID --nodes=2 --x11 ``` The issued console commands launch the interactive session on 2 nodes. This is the minimal setup to test that the simulator/adaptor code runs on multiple nodes. -- GitLab