-
Notifications
You must be signed in to change notification settings - Fork 28
/
full_expansion_config.yaml
68 lines (67 loc) · 2.16 KB
/
full_expansion_config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Copyright 2022-2024 The Ramble Authors
#
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
# <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
# option. This file may not be copied, modified, or distributed
# except according to those terms.
ramble:
variants:
package_manager: spack
env_vars:
set:
I_MPI_DEBUG: 5
variables:
mpi_command: mpirun -n {n_ranks} -ppn {processes_per_node}
batch_submit: '{execute_experiment}'
processes_per_node: 16
n_ranks: '{processes_per_node}*{n_nodes}'
applications:
openfoam:
workloads:
motorbike:
experiments:
test_{partition}_{processes_per_node}_{n_nodes}_{env_name}:
env_vars:
set:
OMP_NUM_THREADS: '{n_threads}'
variables:
partition: [part1, part2]
processes_per_node: [16, 32]
env_name: [openfoam-skx, openfoam-zen2]
#^-- (partition, processes_per_node) -> (part1, 16, openfoam-skx), (part2, 32, openfoam-zen2)
n_nodes: [2, 4]
matrices:
- matrix_a:
- n_nodes
#^-- (partition, processes_per_node, n_nodes) ->
#(part1, 16, openfoam-skx, 2), (part1, 16, openfoam-skx, 4)
#(part2, 32, openfoam-zen2, 2), (part2, 32, openfoam-zen2, 4)
software:
packages:
gcc9:
pkg_spec: [email protected] target=x86_64
compiler_spec: [email protected]
ompi412:
pkg_spec: [email protected] +legacylaunchers +pmi +thread_multiple +cxx target=x86_64
compiler: gcc9
openfoam-skx:
pkg_spec: openfoam-org@7 target=cascadelake
compiler: gcc9
openfoam-zen2:
pkg_spec: openfoam-org@7 target=zen2
compiler: gcc9
flex:
pkg_spec: [email protected]
compiler: gcc9
environments:
openfoam-skx:
packages:
- ompi412
- openfoam-skx
- flex
openfoam-zen2:
packages:
- ompi412
- openfoam-zen2
- flex