coderunner 0.13.2 → 0.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/coderunner.gemspec +1 -1
- data/lib/coderunner/system_modules/hopper.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.13.
|
|
1
|
+
0.13.3
|
data/coderunner.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ class CodeRunner
|
|
|
7
7
|
nodes, ppn = @nprocs.split(/x/)
|
|
8
8
|
eputs "Warning: Underuse of nodes (#{ppn} cores per node instead of 4)" if ppn.to_i < 4
|
|
9
9
|
raise "Please specify project" unless @project
|
|
10
|
-
raise "Error: cores per node cannot excede 4" if ppn.to_i >
|
|
10
|
+
raise "Error: cores per node cannot excede 4" if ppn.to_i > max_ppn
|
|
11
11
|
# raise "Error: project (i.e. budget) not specified" unless @project
|
|
12
12
|
ppn ||= 4
|
|
13
13
|
if @wall_mins
|