Add: MultiFabRegister
#15449
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
name: 🐧 HIP | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-hip | |
cancel-in-progress: true | |
jobs: | |
build_hip_3d_sp: | |
name: HIP 3D SP | |
runs-on: ubuntu-20.04 | |
env: | |
CXXFLAGS: "-Werror -Wno-deprecated-declarations -Wno-error=pass-failed" | |
CMAKE_GENERATOR: Ninja | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
shell: bash | |
run: .github/workflows/dependencies/hip.sh | |
- name: CCache Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/ccache | |
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | |
restore-keys: | | |
ccache-${{ github.workflow }}-${{ github.job }}-git- | |
- name: build WarpX | |
shell: bash | |
run: | | |
export CCACHE_COMPRESS=1 | |
export CCACHE_COMPRESSLEVEL=10 | |
export CCACHE_MAXSIZE=100M | |
ccache -z | |
source /etc/profile.d/rocm.sh | |
hipcc --version | |
which clang | |
which clang++ | |
export CXX=$(which clang++) | |
export CC=$(which clang) | |
# "mpic++ --showme" forgets open-pal in Ubuntu 20.04 + OpenMPI 4.0.3 | |
# https://bugs.launchpad.net/ubuntu/+source/openmpi/+bug/1941786 | |
# https://github.com/open-mpi/ompi/issues/9317 | |
export LDFLAGS="-lopen-pal" | |
cmake -S . -B build_sp \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DAMReX_AMD_ARCH=gfx900 \ | |
-DWarpX_COMPUTE=HIP \ | |
-DWarpX_EB=ON \ | |
-DWarpX_PYTHON=ON \ | |
-DWarpX_MPI=ON \ | |
-DWarpX_OPENPMD=ON \ | |
-DWarpX_PRECISION=SINGLE \ | |
-DWarpX_FFT=ON \ | |
-DWarpX_HEFFTE=ON | |
cmake --build build_sp -j 4 | |
export WARPX_MPI=OFF | |
export PYWARPX_LIB_DIR=$PWD/build_sp/lib/site-packages/pywarpx/ | |
python3 -m pip wheel . | |
python3 -m pip install *.whl | |
ccache -s | |
du -hs ~/.cache/ccache | |
build_hip_2d_dp: | |
name: HIP 2D DP | |
runs-on: ubuntu-20.04 | |
env: | |
CXXFLAGS: "-Werror -Wno-deprecated-declarations -Wno-error=pass-failed" | |
CMAKE_GENERATOR: Ninja | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
shell: bash | |
run: .github/workflows/dependencies/hip.sh | |
- name: CCache Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/ccache | |
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | |
restore-keys: | | |
ccache-${{ github.workflow }}-${{ github.job }}-git- | |
- name: build WarpX | |
shell: bash | |
run: | | |
export CCACHE_COMPRESS=1 | |
export CCACHE_COMPRESSLEVEL=10 | |
export CCACHE_MAXSIZE=100M | |
ccache -z | |
source /etc/profile.d/rocm.sh | |
hipcc --version | |
which clang | |
which clang++ | |
export CXX=$(which clang++) | |
export CC=$(which clang) | |
# "mpic++ --showme" forgets open-pal in Ubuntu 20.04 + OpenMPI 4.0.3 | |
# https://bugs.launchpad.net/ubuntu/+source/openmpi/+bug/1941786 | |
# https://github.com/open-mpi/ompi/issues/9317 | |
export LDFLAGS="-lopen-pal" | |
cmake -S . -B build_2d \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DAMReX_AMD_ARCH=gfx900 \ | |
-DWarpX_DIMS=2 \ | |
-DWarpX_COMPUTE=HIP \ | |
-DWarpX_EB=ON \ | |
-DWarpX_PYTHON=ON \ | |
-DWarpX_MPI=ON \ | |
-DWarpX_OPENPMD=ON \ | |
-DWarpX_PRECISION=DOUBLE \ | |
-DWarpX_FFT=ON \ | |
-DWarpX_HEFFTE=ON | |
cmake --build build_2d -j 4 | |
export WARPX_MPI=OFF | |
export PYWARPX_LIB_DIR=$PWD/build_2d/lib/site-packages/pywarpx/ | |
python3 -m pip wheel . | |
python3 -m pip install *.whl | |
ccache -s | |
du -hs ~/.cache/ccache |