forked from GoogleCloudPlatform/ramble
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvector_gromacs_software_config.yaml
More file actions
53 lines (52 loc) · 1.65 KB
/
vector_gromacs_software_config.yaml
File metadata and controls
53 lines (52 loc) · 1.65 KB
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
# 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:
OMP_NUM_THREADS: '{n_threads}'
variables:
processes_per_node: 16
mpi_command: 'mpirun -n {n_ranks} -ppn {processes_per_node}'
batch_submit: '{execute_experiment}'
gromacs_version: [2021.6, 2021.7]
applications:
gromacs: # Application name
workloads:
'{app_workloads}': # Workload name from application
experiments:
'{type}_{n_ranks}ranks-{gromacs_version}': # Arbitrary experiment name
variables:
app_workloads: ['water_gmx50', 'water_bare']
n_ranks: [1, 2]
n_threads: '1'
size: '0003'
type: ['pme', 'rf']
env_name: 'gromacs-{gromacs_version}'
matrix:
- app_workloads
- type
- n_ranks
- gromacs_version
software:
packages:
gcc9:
pkg_spec: gcc@9.4.0 target=x86_64
compiler_spec: gcc@9.4.0
impi2021:
pkg_spec: intel-oneapi-mpi@2021.11.0 target=x86_64
compiler: gcc9
gromacs-{gromacs_version}:
pkg_spec: gromacs@{gromacs_version}
compiler: gcc9
environments:
gromacs-{gromacs_version}:
packages:
- gromacs-{gromacs_version}
- impi2021