Files
supercomputers/README.md
2025-04-01 14:32:18 +03:00

27 lines
655 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## Run kernel.cu file
Добавить задачу на запуск kernel.cu в очередь.
```bash
sbatch run.script
```
Узнать статус выполнения.
```bash
scontrol show jobid <jobid>
# или так, чтобы не выводить лишнюю информацию
scontrol show jobid <jobid> | grep JobState
# а так можно посмотреть состояния всех задач
scontrol show job | grep JobState
```
Отменить или завершить задачу досрочно.
```bash
scancel <jobid>
```
Подробнее [тут](https://github.com/DmitriyGubkovskiy/SCC-methodology).