
qsub
List of commands for qsub:
-
qsub:tldr:2ba93 qsub: Submit a script that is executed on 2 nodes using 4 cores per node.$ qsub -l nodes=${2}:ppn=${4} ${script-sh}try on your machineexplain this command
-
qsub:tldr:79d6d qsub: Submit a script to a specific queue. Note that different queues can have different maximum and minimum runtime limits.$ qsub -q ${queue_name} ${script-sh}try on your machineexplain this command
-
qsub:tldr:ea9ca qsub: Submit a script with default settings (depends on TORQUE settings).$ qsub ${script-sh}try on your machineexplain this command
-
qsub:tldr:edff9 qsub: Submit a script with a specified wallclock runtime limit of 1 hour, 2 minutes and 3 seconds.$ qsub -l walltime=${1}:${2}:${3} ${script-sh}try on your machineexplain this command