...
LSF | SLURM | Description |
---|---|---|
bsub < script_file | sbatch script_file | Submit a job script to the scheduler |
bqueues | sinfo | Show available scheduling queues |
bjobs | squeue -u <username> | List user's pending and running jobs |
bsub -n 1 -q hochpc_int -Is /bin/bash | srun -n 1 -p slurmHPC_int --pty /bin/bash | Request an interactive session |
...