75 | | qhost -q This will show you the details on each grid node(# of threads avail., Ram avail. etc) |
76 | | qstat -u username This will show you the jobs status for a particular user |
77 | | qstat -j job number This will show status of a particular job running |
78 | | qstat -u \*. This will show you the status of all jobs currently running on the grid |
79 | | qsub -pe smp N This will submit a job and ask for multiple threads (N is the number of threads wanted) |
| 75 | qhost -q |
| 76 | This will show you the details on each grid node(# of threads avail., Ram avail. etc) |
| 77 | |
| 78 | qstat -u username |
| 79 | This will show you the jobs status for a particular user |
| 80 | |
| 81 | qstat -j job number |
| 82 | This will show status of a particular job running |
| 83 | |
| 84 | qstat -u \*. |
| 85 | This will show you the status of all jobs currently running on the grid |
| 86 | |
| 87 | qsub -pe smp N |
| 88 | This will submit a job and ask for multiple threads (N is the number of threads wanted) |