[WIP] Bisection #11
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: 🐧 OpenMP | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-ubuntu | |
cancel-in-progress: true | |
jobs: | |
build_cxxminimal: | |
name: GCC Minimal w/o MPI | |
runs-on: ubuntu-20.04 | |
if: github.event.pull_request.draft == false | |
env: | |
CXXFLAGS: "-Werror" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
.github/workflows/dependencies/gcc.sh | |
- name: CCache Cache | |
uses: actions/cache@v3 | |
# - once stored under a key, they become immutable (even if local cache path content changes) | |
# - for a refresh the key has to change, e.g., hash of a tracked file in the key | |
with: | |
path: | | |
~/.ccache | |
~/.cache/ccache | |
key: ccache-openmp-cxxminimal-${{ hashFiles('.github/workflows/ubuntu.yml') }}-${{ hashFiles('cmake/dependencies/AMReX.cmake') }} | |
restore-keys: | | |
ccache-openmp-cxxminimal-${{ hashFiles('.github/workflows/ubuntu.yml') }}- | |
ccache-openmp-cxxminimal- | |
- name: build WarpX | |
run: | | |
cmake -S . -B build \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DWarpX_DIMS="RZ;3" \ | |
-DWarpX_EB=OFF \ | |
-DWarpX_MPI=OFF \ | |
-DWarpX_QED=OFF | |
cmake --build build -j 2 | |
./build/bin/warpx.3d Examples/Physics_applications/laser_acceleration/inputs_3d | |
./build/bin/warpx.rz Examples/Physics_applications/laser_acceleration/inputs_rz | |
build_1D_2D: | |
name: GCC 1D & 2D w/ MPI | |
runs-on: ubuntu-22.04 | |
if: github.event.pull_request.draft == false | |
env: | |
CXXFLAGS: "-Werror" | |
CXX: "g++-12" | |
CC: "gcc-12" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
.github/workflows/dependencies/gcc12.sh | |
- name: CCache Cache | |
uses: actions/cache@v3 | |
# - once stored under a key, they become immutable (even if local cache path content changes) | |
# - for a refresh the key has to change, e.g., hash of a tracked file in the key | |
with: | |
path: | | |
~/.ccache | |
~/.cache/ccache | |
key: ccache-openmp-1D-2D-${{ hashFiles('.github/workflows/ubuntu.yml') }}-${{ hashFiles('cmake/dependencies/AMReX.cmake') }} | |
restore-keys: | | |
ccache-openmp-1D-2D-${{ hashFiles('.github/workflows/ubuntu.yml') }}- | |
ccache-openmp-1D-2D- | |
- name: build WarpX | |
run: | | |
cmake -S . -B build \ | |
-GNinja \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DWarpX_DIMS="1;2" \ | |
-DWarpX_EB=OFF \ | |
-DWarpX_PSATD=ON \ | |
-DWarpX_QED_TABLE_GEN=ON | |
cmake --build build -j 2 | |
./build/bin/warpx.1d Examples/Physics_applications/laser_acceleration/inputs_1d | |
./build/bin/warpx.2d Examples/Physics_applications/laser_acceleration/inputs_2d | |
build_3D_sp: | |
name: GCC 3D & RZ w/ MPI, single precision | |
runs-on: ubuntu-22.04 | |
if: github.event.pull_request.draft == false | |
env: | |
CXX: "g++-12" | |
CC: "gcc-12" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
.github/workflows/dependencies/gcc12_blaspp_lapackpp.sh | |
- name: CCache Cache | |
uses: actions/cache@v3 | |
# - once stored under a key, they become immutable (even if local cache path content changes) | |
# - for a refresh the key has to change, e.g., hash of a tracked file in the key | |
with: | |
path: | | |
~/.ccache | |
~/.cache/ccache | |
key: ccache-openmp-3D-RZ-SP-${{ hashFiles('.github/workflows/ubuntu.yml') }}-${{ hashFiles('cmake/dependencies/AMReX.cmake') }} | |
restore-keys: | | |
ccache-openmp-3D-RZ-SP-${{ hashFiles('.github/workflows/ubuntu.yml') }}- | |
ccache-openmp-3D-RZ-SP- | |
- name: build WarpX | |
run: | | |
# we need to define this *after* having installed the dependencies, | |
# because the compilation of blaspp raises warnings. | |
export CXXFLAGS="-Werror" | |
cmake -S . -B build \ | |
-GNinja \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DWarpX_DIMS="RZ;3" \ | |
-DWarpX_EB=OFF \ | |
-DWarpX_PSATD=ON \ | |
-DWarpX_PRECISION=SINGLE \ | |
-DWarpX_PARTICLE_PRECISION=SINGLE \ | |
-DWarpX_QED_TABLE_GEN=ON | |
cmake --build build -j 2 | |
./build/bin/warpx.3d Examples/Physics_applications/laser_acceleration/inputs_3d | |
./build/bin/warpx.rz Examples/Physics_applications/laser_acceleration/inputs_rz | |
build_gcc_ablastr: | |
name: GCC ABLASTR w/o MPI | |
runs-on: ubuntu-20.04 | |
if: github.event.pull_request.draft == false | |
env: | |
CMAKE_GENERATOR: Ninja | |
CXXFLAGS: "-Werror" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
.github/workflows/dependencies/gcc.sh | |
sudo apt-get install -y libopenmpi-dev openmpi-bin | |
- name: CCache Cache | |
uses: actions/cache@v3 | |
# - once stored under a key, they become immutable (even if local cache path content changes) | |
# - for a refresh the key has to change, e.g., hash of a tracked file in the key | |
with: | |
path: | | |
~/.ccache | |
~/.cache/ccache | |
key: ccache-openmp-gccablastr-${{ hashFiles('.github/workflows/ubuntu.yml') }}-${{ hashFiles('cmake/dependencies/AMReX.cmake') }} | |
restore-keys: | | |
ccache-openmp-gccablastr-${{ hashFiles('.github/workflows/ubuntu.yml') }}- | |
ccache-openmp-gccablastr- | |
- name: build WarpX | |
run: | | |
cmake -S . -B build \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DWarpX_APP=OFF \ | |
-DWarpX_LIB=OFF | |
cmake --build build -j 2 | |
build_pyfull: | |
name: Clang pywarpx | |
runs-on: ubuntu-20.04 | |
if: github.event.pull_request.draft == false | |
env: | |
CC: clang | |
CXX: clang++ | |
# On CI for this test, Ninja is slower than the default: | |
#CMAKE_GENERATOR: Ninja | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
.github/workflows/dependencies/pyfull.sh | |
- name: CCache Cache | |
uses: actions/cache@v3 | |
# - once stored under a key, they become immutable (even if local cache path content changes) | |
# - for a refresh the key has to change, e.g., hash of a tracked file in the key | |
with: | |
path: | | |
~/.ccache | |
~/.cache/ccache | |
key: ccache-openmp-pyfull-${{ hashFiles('.github/workflows/ubuntu.yml') }}-${{ hashFiles('cmake/dependencies/AMReX.cmake') }} | |
restore-keys: | | |
ccache-openmp-pyfull-${{ hashFiles('.github/workflows/ubuntu.yml') }}- | |
ccache-openmp-pyfull- | |
- name: build WarpX | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install --upgrade build packaging setuptools wheel | |
export CXXFLAGS="-Werror -Wno-error=pass-failed" | |
cmake -S . -B build \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DWarpX_APP=OFF \ | |
-DWarpX_PSATD=ON \ | |
-DWarpX_PYTHON=ON \ | |
-DWarpX_QED_TABLE_GEN=ON | |
cmake --build build -j 2 --target pip_install | |
- name: run pywarpx | |
run: | | |
export OMP_NUM_THREADS=1 | |
mpirun -n 2 Examples/Physics_applications/laser_acceleration/PICMI_inputs_3d.py |