-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev/gfdl' into cpt2gfdl_080622
- Loading branch information
Showing
64 changed files
with
2,124 additions
and
506 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Performance Monitor | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
build-test-perfmon: | ||
|
||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: .testing | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: ./.github/actions/testing-setup | ||
|
||
- name: Compile optimized models | ||
run: >- | ||
make -j build.prof | ||
MOM_TARGET_SLUG=$GITHUB_REPOSITORY | ||
MOM_TARGET_LOCAL_BRANCH=$GITHUB_BASE_REF | ||
DO_REGRESSION_TESTS=true | ||
- name: Generate profile data | ||
run: >- | ||
pip install f90nml && | ||
make profile | ||
DO_REGRESSION_TESTS=true | ||
- name: Generate perf data | ||
run: | | ||
sudo sysctl -w kernel.perf_event_paranoid=2 | ||
make perf DO_REGRESSION_TESTS=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.