We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hipo-multi-merge
hipo-utils
1 parent 97d65e7 commit a0597c8Copy full SHA for a0597c8
bin/hipo-multi-merge
@@ -8,6 +8,8 @@ def print_log(name, val)
8
puts name.rjust(30) + " = #{val}"
9
end
10
11
+SlurmMemReq = 2048 + 200 # `-Xmx` argument from `hipo-utils`, plus extra padding
12
+
13
# user options
14
@args = OpenStruct.new
15
@args.inputs = nil
@@ -76,7 +78,7 @@ if @args.use_batch
76
78
'job-name' => "hipo_multi_merge___#{@args.prefix}",
77
79
'account' => 'clas12',
80
'partition' => 'production',
- 'mem-per-cpu' => 500,
81
+ 'mem-per-cpu' => SlurmMemReq,
82
'time' => '1:00:00',
83
'ntasks' => 1,
84
'cpus-per-task' => 1,
0 commit comments