Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
dcc:itsol:whisper:running [2024/08/12 07:52] – Moved content from LibGuides to here giuliodcc:itsol:whisper:running [2025/05/09 14:06] (current) – added <code></code> where needed giulio
Line 4: Line 4:
 Now that you have your general script ready, all you have to do to run it, is to simply copy the command below into your terminal and press enter: Now that you have your general script ready, all you have to do to run it, is to simply copy the command below into your terminal and press enter:
  
-  * ''sbatch whisper_runall.sh''+  * <code> sbatch whisper_runall.sh </code>
  
 The terminal will then confirm that your job had been received and assign it a ''jobID''. The three messages below will appear in your terminal. The terminal will then confirm that your job had been received and assign it a ''jobID''. The three messages below will appear in your terminal.
  
-''sbatch: Job sent to gpu partition''\\ +<code> 
-''sbatch: Request for one of the default GPU types added''\\ +sbatch: Job sent to gpu partition 
-''Submitted batch job <jobID>''\\+sbatch: Request for one of the default GPU types added 
 +Submitted batch job <jobID> 
 +</code>
  
 Please keep the ''jobID'' handy, as that is the quickest way to check how the job is going and if it ran successfully. The figure below shows what the terminal will look like upon successfully launching the script. {{ :dcc:itsol:whisper:run_1.png?direct&800 | }} Please keep the ''jobID'' handy, as that is the quickest way to check how the job is going and if it ran successfully. The figure below shows what the terminal will look like upon successfully launching the script. {{ :dcc:itsol:whisper:run_1.png?direct&800 | }}
Line 20: Line 22:
 To check if the HPC has finished your job, type the following as shown in the figure below: To check if the HPC has finished your job, type the following as shown in the figure below:
  
-  * ''jobinfo <jobID>'' +  * <code> jobinfo <jobID> </code>
 {{ :dcc:itsol:whisper:run_2.png?direct&800 | }} {{ :dcc:itsol:whisper:run_2.png?direct&800 | }}
  
Line 27: Line 29:
 If you have launched multiple jobs (which we do not recommend), or if you simply want to see if the job is done without displaying the details of it, type in the following: If you have launched multiple jobs (which we do not recommend), or if you simply want to see if the job is done without displaying the details of it, type in the following:
  
-  * ''squeue -u (your_pnumber)''+  * <code> squeue -u (your_pnumber) </code>
  
 This command **displays all the active jobs** linked to your account. In the list that will appear, look for the ''jobID'' that you recorded and, under the column ''ST'', read the letter written there. ''PD'' means the job is waiting for resources to be available, ''R'' means that the job is running, ''CG'' that the job is completing. If your job does not appear in this list, it means that the HPC cluster is done processing your audio. This command **displays all the active jobs** linked to your account. In the list that will appear, look for the ''jobID'' that you recorded and, under the column ''ST'', read the letter written there. ''PD'' means the job is waiting for resources to be available, ''R'' means that the job is running, ''CG'' that the job is completing. If your job does not appear in this list, it means that the HPC cluster is done processing your audio.