From b20797772231ae94b425d649cff640eb2cfdc721 Mon Sep 17 00:00:00 2001 From: edoapra Date: Thu, 30 Apr 2026 15:58:33 -0700 Subject: [PATCH] skip QAs when FC=nvfortran and Zen4 CPUs __nvmath_abort:Math dispatch table is either misconfigured or corrupted. --- .github/workflows/github_actions.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/github_actions.yml b/.github/workflows/github_actions.yml index 23b7a85100..4a5c13a2a0 100644 --- a/.github/workflows/github_actions.yml +++ b/.github/workflows/github_actions.yml @@ -515,7 +515,9 @@ jobs: id: qa_test if: steps.compile.conclusion == 'success' run: | + if [[ $FC != 'nvfortran' && ${{ env.microarch}} != 'Zen4' ]]; then ./travis/run_qas.sh + fi - name: Check if QA testing has failed if: ${{ failure() && steps.qa_test.outcome == 'failure' }} run: |