[ARVADOS] created: 1.3.0-1659-gfa4a1e774
Git user
git at public.curoverse.com
Tue Oct 1 20:11:11 UTC 2019
at fa4a1e7741cf780656bf1dfa5a622e40a315c67a (commit)
commit fa4a1e7741cf780656bf1dfa5a622e40a315c67a
Author: Peter Amstutz <pamstutz at veritasgenetics.com>
Date: Mon Sep 30 14:51:00 2019 -0400
15640: Adjust memory requirements
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <pamstutz at veritasgenetics.com>
diff --git a/sdk/cwl/tests/wf/runin-reqs-wf.cwl b/sdk/cwl/tests/wf/runin-reqs-wf.cwl
index e8bbc08d8..3cc52936e 100644
--- a/sdk/cwl/tests/wf/runin-reqs-wf.cwl
+++ b/sdk/cwl/tests/wf/runin-reqs-wf.cwl
@@ -34,7 +34,7 @@ steps:
hints:
- class: arv:RunInSingleContainer
- class: ResourceRequirement
- ramMin: $(inputs.count*32)
+ ramMin: $(96+inputs.count*32)
- class: arv:APIRequirement
scatter: count
run:
@@ -58,4 +58,4 @@ steps:
type: int
script: File
outputs: []
- arguments: [python, $(inputs.script), $(inputs.count * 32)]
+ arguments: [python, $(inputs.script), $(96+inputs.count * 32)]
diff --git a/sdk/cwl/tests/wf/runin-reqs-wf2.cwl b/sdk/cwl/tests/wf/runin-reqs-wf2.cwl
index 15cc8df6a..7d06cb308 100644
--- a/sdk/cwl/tests/wf/runin-reqs-wf2.cwl
+++ b/sdk/cwl/tests/wf/runin-reqs-wf2.cwl
@@ -44,7 +44,7 @@ steps:
outputs: []
hints:
- class: ResourceRequirement
- ramMin: $(inputs.count*32)
+ ramMin: $(96+inputs.count*32)
steps:
sleep1:
in:
@@ -59,4 +59,4 @@ steps:
type: int
script: File
outputs: []
- arguments: [python, $(inputs.script), $(inputs.count * 32)]
+ arguments: [python, $(inputs.script), $(96+inputs.count * 32)]
diff --git a/sdk/cwl/tests/wf/runin-reqs-wf3.cwl b/sdk/cwl/tests/wf/runin-reqs-wf3.cwl
index e07ff8def..c13b7a0bc 100644
--- a/sdk/cwl/tests/wf/runin-reqs-wf3.cwl
+++ b/sdk/cwl/tests/wf/runin-reqs-wf3.cwl
@@ -50,10 +50,10 @@ steps:
id: subtool
hints:
- class: ResourceRequirement
- ramMin: $(inputs.count*32)
+ ramMin: $(96+inputs.count*32)
inputs:
count:
type: int
script: File
outputs: []
- arguments: [python, $(inputs.script), $(inputs.count * 32)]
+ arguments: [python, $(inputs.script), $(96+inputs.count * 32)]
diff --git a/sdk/cwl/tests/wf/runin-reqs-wf4.cwl b/sdk/cwl/tests/wf/runin-reqs-wf4.cwl
index 05e73c8df..9a26d0113 100644
--- a/sdk/cwl/tests/wf/runin-reqs-wf4.cwl
+++ b/sdk/cwl/tests/wf/runin-reqs-wf4.cwl
@@ -53,10 +53,10 @@ steps:
id: subtool
hints:
- class: ResourceRequirement
- ramMin: 32
+ ramMin: 128
inputs:
count:
type: int
script: File
outputs: []
- arguments: [python, $(inputs.script), "32"]
+ arguments: [python, $(inputs.script), "128"]
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list