Skip to content

Vof

Vof #514

Workflow file for this run

---
name: CUDA
on:
push:
pull_request:
schedule:
- cron: "13 8 * * *"
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-CUDA
cancel-in-progress: true
jobs:
cuda_eb_3d:
if: ${{ github.repository == 'AMReX-Fluids/incflo' || github.event_name != 'schedule' }}
name: CUDA EB 3D
runs-on: ubuntu-20.04
env: {CXXFLAGS: "-Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wnon-virtual-dtor -Wlogical-op -Wmisleading-indentation -Wduplicated-cond -Wduplicated-branches -Wmissing-include-dirs"}
steps:
- name: Checkout incflo
uses: actions/checkout@v4
with:
path: incflo
- name: Checkout AMReX-Hydro
uses: actions/checkout@v4
with:
repository: AMReX-Fluids/AMReX-Hydro
path: AMReX-Hydro
- name: Checkout AMReX
uses: actions/checkout@v4
with:
repository: AMReX-Codes/amrex
path: amrex
- name: Set Up 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: Load Dependencies
run: |
amrex/.github/workflows/dependencies/dependencies_nvcc.sh 11.2
amrex/.github/workflows/dependencies/dependencies_ccache.sh
- name: Build
run: |
export PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:${PATH}
export LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/usr/local/cuda/lib64:${LD_LIBRARY_PATH}
nvcc --version
g++ --version
export CCACHE_COMPRESS=1
export CCACHE_COMPRESSLEVEL=10
export CCACHE_MAXSIZE=500M
ccache -z
cd incflo
mkdir build
cd build
cmake .. \
-DINCFLO_DIM=3 \
-DINCFLO_MPI=ON \
-DINCFLO_OMP=OFF \
-DINCFLO_EB=ON \
-DINCFLO_CUDA=ON \
-DAMReX_GPU_BACKEND=CUDA \
-DAMReX_CUDA_ARCH=70 \
-DAMReX_CUDA_ERROR_CROSS_EXECUTION_SPACE_CALL=ON \
-DAMReX_CUDA_ERROR_CAPTURE_THIS=ON \
-DAMREX_HOME=${{ github.workspace }}/amrex \
-DAMREX_HYDRO_HOME=${{ github.workspace }}/AMReX-Hydro \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DCMAKE_CUDA_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
make -j 2
ccache -s
du -hs ~/.cache/ccache
cuda_no_eb_2d:
if: ${{ github.repository == 'AMReX-Fluids/incflo' || github.event_name != 'schedule' }}
name: CUDA NO EB 2D
runs-on: ubuntu-20.04
env: {CXXFLAGS: "-Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wnon-virtual-dtor -Wlogical-op -Wmisleading-indentation -Wduplicated-cond -Wduplicated-branches -Wmissing-include-dirs"}
steps:
- name: Checkout incflo
uses: actions/checkout@v4
with:
path: incflo
- name: Checkout AMReX-Hydro
uses: actions/checkout@v4
with:
repository: AMReX-Fluids/AMReX-Hydro
path: AMReX-Hydro
- name: Checkout AMReX
uses: actions/checkout@v4
with:
repository: AMReX-Codes/amrex
path: amrex
- name: Set Up 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: Load Dependencies
run: |
amrex/.github/workflows/dependencies/dependencies_nvcc.sh 11.2
amrex/.github/workflows/dependencies/dependencies_ccache.sh
- name: Build
run: |
export PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:${PATH}
export LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/usr/local/cuda/lib64:${LD_LIBRARY_PATH}
nvcc --version
g++ --version
export CCACHE_COMPRESS=1
export CCACHE_COMPRESSLEVEL=10
export CCACHE_MAXSIZE=400M
ccache -z
cd incflo
mkdir build
cd build
cmake .. \
-DINCFLO_DIM=2 \
-DINCFLO_MPI=ON \
-DINCFLO_OMP=OFF \
-DINCFLO_EB=OFF \
-DINCFLO_CUDA=ON \
-DAMReX_GPU_BACKEND=CUDA \
-DAMReX_CUDA_ARCH=70 \
-DAMReX_CUDA_ERROR_CROSS_EXECUTION_SPACE_CALL=ON \
-DAMReX_CUDA_ERROR_CAPTURE_THIS=ON \
-DAMREX_HOME=${{ github.workspace }}/amrex \
-DAMREX_HYDRO_HOME=${{ github.workspace }}/AMReX-Hydro \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DCMAKE_CUDA_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
make -j 2
ccache -s
du -hs ~/.cache/ccache
save_pr_number:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Save PR number
env:
PR_NUMBER: ${{ github.event.number }}
run: |
echo $PR_NUMBER > pr_number.txt
- uses: actions/upload-artifact@v4
with:
name: pr_number
path: pr_number.txt
retention-days: 1