Changes to conftest.py for translate tests #46
Workflow file for this run
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
name: "Translate test" | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
jobs: | |
all: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [3.11.7] | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
with: | |
submodules: 'recursive' | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install OpenMPI & Boost for gt4py | |
run: | | |
sudo apt-get install libopenmpi-dev libboost1.74-dev | |
- name: Install Python packages | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install .[ndsl,pyFV3,test] | |
- name: Download data | |
run: | | |
mkdir -p test_data | |
cd test_data | |
wget https://portal.nccs.nasa.gov/datashare/astg/smt/pace-regression-data/8.1.3_c12_6ranks_baroclinic.physics.tar.gz | |
tar -xzvf 8.1.3_c12_6ranks_baroclinic.physics.tar.gz | |
cd - | |
- name: Numpy Translate Test | |
run: | | |
coverage run --rcfile=setup.cfg -m pytest \ | |
-v -s --data_path=./test_data/8.1.3/c12_6ranks_baroclinic/physics \ | |
--backend=numpy \ | |
--threshold_overrides_file=./tests/savepoint/translate/overrides/standard.yaml \ | |
./tests/savepoint | |
- name: Orchestrated dace:cpu Translate Test | |
run: | | |
export FV3_DACEMODE=BuildAndRun | |
export PACE_FLOAT_PRECISION=64 | |
export PACE_TEST_N_THRESHOLD_SAMPLES=0 | |
export OMP_NUM_THREADS=10 | |
export PACE_LOGLEVEL=Debug | |
coverage run --rcfile=setup.cfg -m pytest \ | |
-vvv -x -s --data_path=./test_data/8.1.3/c12_6ranks_baroclinic/physics \ | |
--backend=dace:cpu \ | |
--threshold_overrides_file=./tests/savepoint/translate/overrides/standard.yaml \ | |
./tests/savepoint | |
- name: Output code coverage | |
run: | | |
coverage combine | |
coverage report |