Cross species collisions #2425
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
# Based on example from https://github.com/julia-actions/julia-runtest | |
name: Debug checks for correctness | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
debug-checks: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# Only run on linux to save CI server cpu-hours | |
os: [ubuntu-latest] | |
fail-fast: false | |
timeout-minutes: 360 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mpi4py/setup-mpi@v1 | |
with: | |
mpi: 'openmpi' | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.10' | |
arch: x64 | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
project: 'moment_kinetics/' | |
- name: Debug test | |
run: | | |
cd moment_kinetics | |
# Hard code the debug level so that we can run without using the | |
# `--compiled-modules=no` flag, which breaks Symbolics.jl at the | |
# moment. | |
sed -i -e "s/_debug_level = get_options.*/_debug_level = 2/" src/debugging.jl | |
julia --project -e 'using MPIPreferences; MPIPreferences.use_system_binary(); using Pkg; Pkg.precompile()' | |
# Need to use openmpi so that the following arguments work: | |
# * `--mca rmaps_base_oversubscribe 1` allows oversubscription (more processes | |
# than physical cores). | |
# * `--mca mpi_yield_when_idle 1` changes a setting to prevent excessively | |
# terrible performance when oversubscribing. | |
## Don't use --compiled-modules=no for now, as it currently breaks Symbolics.jl | |
#mpiexec -np 4 --mca rmaps_base_oversubscribe 1 julia --project --check-bounds=yes --compiled-modules=no debug_test/sound_wave_tests.jl --debug 2 | |
mpiexec -np 4 --mca rmaps_base_oversubscribe 1 julia --project --check-bounds=yes debug_test/runtests.jl --debug 2 |