| 393 | |
| 394 | ==== "interactive" QOS ==== |
| 395 | The "interactive" QOS is intended to be used for testing SLURM script submission, and is limited to 1 job per user. To use it, set your partition and QOS to "interactive". For example, with idev: |
| 396 | |
| 397 | {{{ |
| 398 | export MY_PARTITION=interactive |
| 399 | export MY_QUEUE=interactive |
| 400 | idev |
| 401 | }}} |
| 402 | |
| 403 | Be sure to unset these variables to resume normal job submission: |
| 404 | |
| 405 | {{{ |
| 406 | unset MY_PARTITION |
| 407 | unset MY_QUEUE |
| 408 | }}} |
| 409 | |
| 410 | Other QOS's on the system are for staff testing use only. |
| 411 | |