Foxes bug with intel parsing files with many elements #145
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: ubuntu-nvhpc | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
builds-and-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
optimization-type: ["Debug", "Release"] | |
mpi-build: ["No"] | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: fortran-lang/setup-fortran@v1 | |
id: setup-fortran | |
with: | |
compiler: nvidia-hpc | |
version: '24.5' | |
- name: Build application | |
run: | | |
# export CC=nvcc | |
# export CXX=nvc++ | |
# export FC=nvfortran | |
cmake -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.optimization-type}} -DSEMBA_FDTD_ENABLE_HDF=NO | |
cmake --build build -j | |
- name: Run fdtd unit tests | |
timeout-minutes: 30 | |
run: | | |
build/bin/fdtd_tests | |
- name: Install python wrapper requirements | |
run: | | |
python -m pip install -r requirements.txt | |
# - name: Run wrapper tests | |
# timeout-minutes: 60 | |
# run: | | |
# python -m pytest test | |