Validation of PRS Installation#
To verify that PRS is properly installed, perform the following checks:
Submit a Simple Test Job#
Submit a simple test job to Slurm to verify that jobs can be scheduled and run:
srun --gres=gpu:1 sleep 10 &
This command requests one GPU resource for the job, ensuring that GPU scheduling is functioning correctly.
Submit a Hero Job#
Before submitting a hero job, ensure that the administrator has created a QOS for hero jobs named globres_hero
and that the current user can use this QOS.
Submit a hero job to test the globres_hero
functionality:
srun --gres=gpu:1 --qos=globres_hero sleep 10 &
This command submits a job with the globres_hero
quality of service, allowing it to use the theoretical maximum power of the allocated devices.
Monitor Job Status#
Check the status of the submitted jobs:
squeue
Ensure that the jobs complete successfully without errors. This confirms that PRS is correctly integrated with Slurm and functioning as expected.