Skip to content
Snippets Groups Projects
Commit c75fd8a5 authored by Cats's avatar Cats
Browse files

ceil runtime memory (must be int)

parent b02601ad
No related branches found
No related tags found
1 merge request!8Run time settings and additional adjustments
......@@ -82,7 +82,7 @@ task SampleConfig {
}
runtime {
memory: select_first([memory, 3.0]) * select_first([memoryMultiplier, 1.5])
memory: ceil(select_first([memory, 3.0]) * select_first([memoryMultiplier, 1.5]))
}
}
......@@ -146,6 +146,6 @@ task BaseCounter {
}
runtime {
memory: select_first([memory, 12.0]) * select_first([memoryMultiplier, 1.5])
memory: ceil(select_first([memory, 12.0]) * select_first([memoryMultiplier, 1.5]))
}
}
......@@ -89,7 +89,7 @@ task extractAdapters {
}
runtime {
memory: select_first([memory, 4.0]) * select_first([memoryMultiplier, 1.5])
memory: ceil(select_first([memory, 4.0]) * select_first([memoryMultiplier, 1.5]))
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment