diff --git a/VSC.md b/VSC.md index f7dc6765451b4f061ffb7c2b623d440571a32e7e..5218455f61a38935bc40ced56902ea304400438a 100644 --- a/VSC.md +++ b/VSC.md @@ -251,4 +251,18 @@ will load the intel compiler suite and add variables to your environment. on how to use environment modules go to [Using Environment Modules](Misc/Environment-Modules.md) +## Debugging on VSC-4 + +Currently (6.2021) there is no development queue on VSC-4 and the support suggested to do the following: + +```bash +# Request resources from slurm (-N 1, a full Node) +salloc -N 1 -p mem_0384 --qos p71386_0384 --no-shell +# Once the node is assigned / job is running +# Check with +squeue -u $USER +# connect to the Node with ssh +ssh [Node] +# test and debug the model there. +```