Skip to content

Commit 90dc2db

Browse files
Merge pull request #510 from GoogleCloudPlatform/release-v0.5.0
Merge release v0.5.0 into main
2 parents 2146246 + 7de4373 commit 90dc2db

File tree

358 files changed

+6393
-2906
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

358 files changed

+6393
-2906
lines changed

.github/workflows/spelling.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
formatting:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Check Spelling
16-
uses: crate-ci/typos@548ac37a5de9ce84871bf4db3c9b8c462896d480 # v1.16.24
16+
uses: crate-ci/typos@v1.20.4
1717
with:
1818
files: ./lib/ramble/ramble ./lib/ramble/docs ./examples ./share ./bin ./etc ./var ./README.md
1919
config: ./.typos.toml

.typos.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ extend-ignore-re = [
1717
"fom" = "fom"
1818
"namd" = "namd"
1919
"reord" = "reord"
20+
"PN" = "PN" # fixing tPN in IOR
21+
"repositor" = "repositor" # Fixing partial name without singular / plural suffix
2022

2123
[default.extend-identifiers]
2224
"ATPase" = "ATPase"

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This is the list of Ramble's significant contributors.
2+
#
3+
# This does not necessarily list everyone who has contributed code,
4+
# especially since many employees of one corporation may be contributing.
5+
# To see the full list of contributors, see the revision history in
6+
# source control.
7+
Google LLC

LICENSE-APACHE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright 2022-2024 Google LLC.
190+
Copyright 2022-2024 The Ramble Authors.
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It works on Linux, macOS, and many supercomputers.
66
Ramble can be used to configure a variety of experiments for applications.
77
These can include anything from:
88
- Scientific parameter sweeps
9-
- Performance focused scalaing studies
9+
- Performance focused scaling studies
1010
- Compiler flag sweeps
1111

1212
To install ramble and configure your experiment workspace, make sure you have

bin/ramble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# Copyright 2022-2024 Google LLC
2+
# Copyright 2022-2024 The Ramble Authors
33
#
44
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
55
# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license

bin/ramble-python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022-2024 Google LLC
1+
# Copyright 2022-2024 The Ramble Authors
22
#
33
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
44
# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license

etc/ramble/defaults/spack.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
spack:
2-
concretized: false
32
packages: {}
43
environments: {}

examples/basic_expansion_config.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,15 @@ ramble:
2929
n_ranks: '1'
3030
n_nodes: '1'
3131
spack:
32-
concretized: true
3332
packages:
3433
gcc9:
3534
spack_spec: [email protected] target=x86_64
3635
compiler_spec: [email protected]
3736
ompi412:
3837
spack_spec: [email protected] +legacylaunchers +pmi +thread_multiple +cxx target=x86_64
3938
compiler: gcc9
40-
impi2018:
41-
spack_spec: intel-mpi@2018.4.274
39+
impi2021:
40+
spack_spec: intel-oneapi-mpi@2021.11.0
4241
compiler: gcc9
4342
openfoam:
4443
spack_spec: openfoam-org@7
@@ -57,5 +56,5 @@ ramble:
5756
- openfoam
5857
wrfv4:
5958
packages:
60-
- impi2018
59+
- impi2021
6160
- wrfv4

examples/basic_gromacs_config.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,12 @@ ramble:
3838
size: '0003'
3939
type: 'rf'
4040
spack:
41-
concretized: true
4241
packages:
4342
gcc9:
4443
spack_spec: [email protected] target=x86_64
4544
compiler_spec: [email protected]
46-
impi2018:
47-
spack_spec: intel-mpi@2018.4.274 target=x86_64
45+
impi2021:
46+
spack_spec: intel-oneapi-mpi@2021.11.0 target=x86_64
4847
compiler: gcc9
4948
gromacs:
5049
spack_spec: [email protected]
@@ -53,4 +52,4 @@ ramble:
5352
gromacs:
5453
packages:
5554
- gromacs
56-
- impi2018
55+
- impi2021

0 commit comments

Comments
 (0)