-
Notifications
You must be signed in to change notification settings - Fork 12
132 lines (119 loc) · 4.19 KB
/
translate.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: "pyFV3 translate tests (subset)"
on:
workflow_call:
inputs:
component_trigger:
type: boolean
default: false
required: false
component_name:
type: string
default: ''
required: false
pull_request:
# cancel running jobs if theres a newer push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pyFV3_translate_tests:
runs-on: ubuntu-latest
container:
image: ghcr.io/noaa-gfdl/miniforge:mpich
env:
DATA_PATH: ./test_data/8.1.3/c12_6ranks_standard/dycore
DATA_URL: "https://portal.nccs.nasa.gov/datashare/astg/smt/pace-regression-data/8.1.3_c12_6ranks_standard.tar.gz"
steps:
- name: External trigger Checkout pyFV3
if: ${{inputs.component_trigger}}
uses: actions/checkout@v4
with:
submodules: 'recursive'
repository: noaa-gfdl/pyFV3
path: pyFV3
- name: Checkout hash that triggered CI
uses: actions/checkout@v4
with:
submodules: 'recursive'
path: pyFV3/${{inputs.component_name}}
- name: External trigger install NDSL packages
if: ${{inputs.component_trigger}}
run: |
cd ${GITHUB_WORKSPACE}/pyFV3
cd NDSL && pip3 install .[test] && cd ../
pip3 install .[test]
- name: Install pyFV3 packages
if: ${{ ! inputs.component_trigger }}
run : |
cd ${GITHUB_WORKSPACE}/pyFV3
pip install .[ndsl,test]
- name: Restore test_data (if cached)
id: cache-restore
uses: actions/cache/restore@v4
with:
key: ${{ env.DATA_PATH }}
path: pyFV3/test_data
- name: Download test_data (if not cached)
if: steps.cache-restore.outputs.cache-hit != 'true'
run: |
cd ${GITHUB_WORKSPACE}/pyFV3
mkdir -p test_data && cd test_data
wget ${{ env.DATA_URL }}
tar -xzvf 8.1.3_c12_6ranks_standard.tar.gz --no-same-owner
ls -l
cd ..
ls -l
- name: NumPy FvTp2d
run: |
ls -l
cd ${GITHUB_WORKSPACE}/pyFV3
ls -l
coverage run --rcfile=setup.cfg -m pytest \
-v -s --data_path=${{ env.DATA_PATH }} \
--backend=numpy \
--which_modules=FvTp2d \
--threshold_overrides_file=./tests/savepoint/translate/overrides/standard.yaml \
./tests/savepoint
- name: Numpy D_SW
if: False
run: |
cd ${GITHUB_WORKSPACE}/pyFV3
coverage run --rcfile=setup.cfg -m pytest \
-v -s --data_path=${{ env.DATA_PATH }} \
--backend=numpy \
--which_modules=D_SW \
--threshold_overrides_file=./tests/savepoint/translate/overrides/standard.yaml \
./tests/savepoint
- name: Numpy Remapping
if: False
run: |
cd ${GITHUB_WORKSPACE}/pyFV3
coverage run --rcfile=setup.cfg -m pytest \
-v -s --data_path=${{ env.DATA_PATH }} \
--backend=numpy \
--which_modules=Remapping \
--threshold_overrides_file=./tests/savepoint/translate/overrides/standard.yaml \
./tests/savepoint
- name: Orchestrated dace-cpu Acoustics
if: False
run: |
cd ${GITHUB_WORKSPACE}/pyFV3
export FV3_DACEMODE=BuildAndRun
export PACE_FLOAT_PRECISION=64
export PACE_TEST_N_THRESHOLD_SAMPLES=0
export OMP_NUM_THREADS=1
export PACE_LOGLEVEL=Debug
mpiexec -mca orte_abort_on_non_zero_status 1 -np 6 --oversubscribe coverage run --rcfile=setup.cfg -m mpi4py -m pytest \
-v -s --data_path=${{ env.DATA_PATH }} \
--backend=dace:cpu \
-m parallel \
--which_rank=0 \
--which_modules=DynCore \
--threshold_overrides_file=./tests/savepoint/translate/overrides/standard.yaml \
./tests/savepoint
- name: Cache test_data
id: cache-save
uses: actions/cache/save@v4
with:
path: pyFV3/test_data
key: ${{ steps.cache-restore.outputs.cache-primary-key }}