https://github.com/mohsenhariri/hpc-cwru
Templates for sbatch and srun.
https://github.com/mohsenhariri/hpc-cwru
Last synced: 2 months ago
JSON representation
Templates for sbatch and srun.
- Host: GitHub
- URL: https://github.com/mohsenhariri/hpc-cwru
- Owner: mohsenhariri
- License: gpl-3.0
- Created: 2022-05-02T23:00:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-26T02:00:45.000Z (almost 2 years ago)
- Last Synced: 2023-07-26T03:21:08.564Z (almost 2 years ago)
- Language: Makefile
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HPC Templates
Templates for sbatch and srun.
Should you have any questions, always feel free to contact [me](mailto:[email protected]).
| FLAG | Meaning | Type | Example |
| ------------- | -------------- | -------------------------------------------- | ----------------- |
| -p | Queue type | gpu, smp | -p gpu |
| -N | Node | Int | -N 1 |
| -n | Processor | Int | -n 1 |
| -C | CPU node | hex24gb, hex48gb, octa64gb | -C hex24gb |
| -C | GPU node | gpup100, gpu2080, gpuk40, gpu4v100, gpu2v100 | -C gpup100 |
| -mem | Memory | String | -mem=8gb |
| --mem-per-cpu | Memory per CPU | String | --mem-per-cpu=6gb |
| --time | Execution time | Max 320 hrs | --time=10:00:00 |* srun -p gpu -N 1 -n 6 -C gpup100 --gres=gpu:2 --exclusive --mem=0 --pty bash
* srun -p gpu -C gpup100 --gres=gpu:2 --exclusive --mem=0 --pty bash