Skip to content

Commit

Permalink
Fix issue from not providing enough RAM, throttling rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
EdmundGoodman committed Feb 25, 2024
1 parent 69c2373 commit 40a66b6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions yaml_examples/kudu/simple_rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ run_configurations:
"ntasks-per-node": 1
"cpus-per-task": 1
"exclusive": "mcs"
"mem-per-cpu": 1500
"mem": 60000
module_loads: []
environment_variables: {}
directory: "../0_cpp_versions/0_ref"
Expand All @@ -19,7 +19,7 @@ run_configurations:
"ntasks-per-node": 1
"cpus-per-task": 32
"exclusive": "mcs"
"mem-per-cpu": 1500
"mem-per-cpu": 1875
module_loads: []
environment_variables: {}
directory: "../0_cpp_versions/1_openmp"
Expand All @@ -33,7 +33,7 @@ run_configurations:
"ntasks-per-node": 1
"cpus-per-task": 1
"exclusive": "mcs"
"mem-per-cpu": 1500
"mem": 60000 # Rust seems to use more memory, this heavily bottlenecks if too small
module_loads: []
environment_variables: {}
directory: "../5_iterators"
Expand All @@ -47,7 +47,7 @@ run_configurations:
"ntasks-per-node": 1
"cpus-per-task": 32
"exclusive": "mcs"
"mem-per-cpu": 1500
"mem-per-cpu": 1875
module_loads: []
environment_variables: {}
directory: "../6_parallel"
Expand All @@ -57,7 +57,6 @@ run_configurations:

benches:
"serial":
enabled: False
run_configurations:
- "cpp-reference"
- "rust-reference"
Expand Down

0 comments on commit 40a66b6

Please sign in to comment.