generated from clemsonciti/ood_jupyter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
submit.yml.erb
41 lines (37 loc) · 1018 Bytes
/
submit.yml.erb
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
35
36
37
38
39
40
41
# Job submission configuration file
#
---
#
# Configure the content of the job script for the batch job here
# @see http://www.rubydoc.info/gems/ood_core/OodCore/BatchConnect/Template
#
batch_connect:
# We use the basic web server template for generating the job script
#
# @note Do not change this unless you know what you are doing!
template: "basic"
conn_params:
- tb_port
- show_tb
#
# Configure the job script submission parameters for the batch job here
# @see http://www.rubydoc.info/gems/ood_core/OodCore/Job/Script
#
#script:
# queue_name: "queue1"
# accounting_id: "account1"
# email_on_started: true
# native: # ... array of command line arguments ...
#
script:
native:
- "--job-name"
- "jserver"
- "--partition=<%= slurm_partition %>"
- "--nodes=1"
- "--ntasks-per-node=<%= slurm_task_per_nodes %>"
- "--mem=<%= slurm_mem %>"
<% if slurm_use_gpus =~ /Yes/ -%>
- "--gpus=<%= slurm_num_gpus %>"
<% end -%>
- "--time=<%= slurm_walltime %>"