From 3d2714f8001a9203bf95d94f88c942a606c7e1f0 Mon Sep 17 00:00:00 2001 From: "Eric T. Johnson" Date: Sun, 6 Aug 2023 18:42:15 -0400 Subject: [PATCH] Update CUDA compilation test to cover more cases (#1297) This adds CUDA coverage for both partition functions and self-consistent NSE. --- .github/workflows/cuda.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cuda.yml b/.github/workflows/cuda.yml index c4b097d333..2e584a207a 100644 --- a/.github/workflows/cuda.yml +++ b/.github/workflows/cuda.yml @@ -34,9 +34,15 @@ jobs: cd unit_test/test_react make NETWORK_DIR=aprox13 USE_CUDA=TRUE COMP=gnu USE_MPI=FALSE -j 2 - - name: compile test_react (subch_simple) + - name: compile test_react (ignition_reaclib/URCA-simple) run: | export PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:${PATH} cd unit_test/test_react make realclean - make NETWORK_DIR=subch_simple USE_CUDA=TRUE COMP=gnu USE_MPI=FALSE -j 2 + make NETWORK_DIR=ignition_reaclib/URCA-simple USE_CUDA=TRUE COMP=gnu USE_MPI=FALSE -j 2 + + - name: compile test_ase (ase) + run: | + export PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:${PATH} + cd unit_test/test_ase + make USE_CUDA=TRUE COMP=gnu USE_MPI=FALSE -j 2