-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJobfile
More file actions
34 lines (32 loc) · 821 Bytes
/
Jobfile
File metadata and controls
34 lines (32 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# YAML configuration file for jobrunner
#
# This file provides an organizational structure
# for bash files spread all over the repository
#
# jobrunner should be called from the root of
# a project directory to execute commands in a desired working directory.
#
# All Jobfiles present in a directory tree
# are combined to a single dictionary when executing
# jobrunner commands
#
# Defined scripts that need to be included
# when either setting up or submitting a job
#
# schedular configuration
schedular:
command: bash
options:
- "#SBATCH --job-name=code-engg"
- "#SBATCH --account=startup-adhruv"
- "#SBATCH --nodes=1"
- "#SBATCH --gres=gpu:1"
- "#SBATCH --time=00:05:00"
# job configuration
job:
setup:
- config.sh
- environment.sh
submit:
- config.sh
- environment.sh