Fixing a range of compiler warnings for shadow/unused variables #342
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: Build and Test (Linux) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-and-test-linux: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: # Pairwise testing | |
- compiler: gcc | |
mpi: mpich | |
math-libs: aocl | |
build-shared: static | |
with-64bit-int: int64 | |
with-openmp: openmp | |
with-solver: strumpack | |
with-eigensolver: arpack | |
- compiler: clang | |
mpi: mpich | |
math-libs: aocl | |
build-shared: shared | |
with-64bit-int: int64 | |
with-openmp: serial | |
with-solver: superlu | |
with-eigensolver: arpack | |
- compiler: gcc | |
mpi: openmpi | |
math-libs: openblas | |
build-shared: shared | |
with-64bit-int: int32 | |
with-openmp: openmp | |
with-solver: strumpack | |
with-eigensolver: slepc | |
- compiler: intel | |
mpi: intelmpi | |
math-libs: intelmkl | |
build-shared: static | |
with-64bit-int: int64 | |
with-openmp: openmp | |
with-solver: superlu | |
with-eigensolver: slepc | |
- compiler: intel | |
mpi: intelmpi | |
math-libs: intelmkl | |
build-shared: static | |
with-64bit-int: int32 | |
with-openmp: serial | |
with-solver: strumpack | |
with-eigensolver: arpack | |
- compiler: intel | |
mpi: intelmpi | |
math-libs: intelmkl | |
build-shared: shared | |
with-64bit-int: int32 | |
with-openmp: openmp | |
with-solver: strumpack | |
with-eigensolver: slepc | |
- compiler: gcc | |
mpi: openmpi | |
math-libs: aocl | |
build-shared: static | |
with-64bit-int: int32 | |
with-openmp: serial | |
with-solver: strumpack | |
with-eigensolver: slepc | |
- compiler: clang | |
mpi: mpich | |
math-libs: aocl | |
build-shared: static | |
with-64bit-int: int32 | |
with-openmp: serial | |
with-solver: superlu | |
with-eigensolver: slepc | |
runs-on: palace_ubuntu-latest_16-core | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1' | |
- uses: mpi4py/setup-mpi@v1 | |
with: | |
mpi: ${{ matrix.mpi }} | |
- name: Configure Clang compiler | |
if: matrix.compiler == 'clang' | |
run: | | |
sudo apt-get install -y clang lld | |
- name: Configure Intel oneAPI compiler | |
if: matrix.compiler == 'intel' | |
run: | | |
sudo apt-get remove -y gcc-9 g++-9 gcc-10 g++-10 && sudo apt-get autoremove -y | |
sudo apt-get install -y intel-oneapi-compiler-dpcpp-cpp \ | |
intel-oneapi-compiler-fortran | |
- name: Install math libraries (OpenBLAS) | |
if: matrix.math-libs == 'openblas' | |
run: | | |
if [[ "${{ matrix.with-openmp }}" == 'openmp' ]]; then | |
sudo apt-get install -y libopenblas-openmp-dev | |
else | |
sudo apt-get install -y libopenblas-serial-dev | |
fi | |
- name: Install math libraries (Intel oneAPI MKL) | |
if: matrix.math-libs == 'intelmkl' | |
run: | | |
sudo apt-get install -y intel-oneapi-mkl intel-oneapi-mkl-devel | |
- name: Install math libraries (AOCL) | |
if: matrix.math-libs == 'aocl' | |
run: | | |
wget https://github.com/amd/blis/archive/refs/tags/4.0.tar.gz | |
tar -xzf 4.0.tar.gz && cd blis-4.0 | |
[[ "${{ matrix.with-openmp }}" == 'openmp' ]] && THREADING='openmp' || THREADING='no' | |
./configure --prefix=/opt/amd \ | |
--enable-arg-max-hack \ | |
--disable-static --enable-shared \ | |
--enable-blas --enable-cblas \ | |
--enable-threading=$THREADING \ | |
auto | |
make -j && sudo make install | |
cd .. && rm -rf 4.0.tar.gz blis-* | |
wget https://github.com/amd/libflame/archive/refs/tags/4.0.tar.gz | |
tar -xzf 4.0.tar.gz && cd libflame-4.0 | |
./configure --prefix=/opt/amd \ | |
--enable-max-arg-list-hack \ | |
--disable-static-build --enable-dynamic-build \ | |
--enable-lapack2flame | |
make -j && sudo make install | |
cd .. && rm -rf *.tar.gz libflame-* | |
- name: Build Palace | |
env: | |
CMAKE_BUILD_TYPE: Release | |
NUM_PROC_BUILD_MAX: '32' | |
run: | | |
# Configure environment | |
if [[ "${{ matrix.compiler }}" == 'intel' ]] || \ | |
[[ "${{ matrix.mpi }}" == 'intelmpi' ]] || \ | |
[[ "${{ matrix.math-libs }}" == 'intelmkl' ]]; then | |
source /opt/intel/oneapi/setvars.sh # Sets PATH, MKLROOT | |
if [[ "${{ matrix.compiler }}" == 'intel' ]]; then | |
export CC=icx | |
export CXX=icpx | |
export FC=ifx | |
fi | |
elif [[ "${{ matrix.compiler }}" == 'clang' ]]; then | |
export CC=clang | |
export CXX=clang++ | |
export FC=gfortran-11 | |
export LDFLAGS='-fuse-ld=lld' | |
elif [[ "${{ matrix.compiler }}" == 'gcc' ]]; then | |
export CC=gcc-11 | |
export CXX=g++-11 | |
export FC=gfortran-11 | |
fi | |
if [[ "${{ matrix.math-libs }}" == 'aocl' ]]; then | |
export AOCLROOT=/opt/amd | |
export LD_LIBRARY_PATH=$AOCLROOT/lib:$LD_LIBRARY_PATH | |
fi | |
export NUM_PROC_BUILD=$(nproc 2> /dev/null || sysctl -n hw.ncpu) | |
if [[ "$NUM_PROC_BUILD" -gt "$NUM_PROC_BUILD_MAX" ]]; then | |
NUM_PROC_BUILD=$NUM_PROC_BUILD_MAX | |
fi | |
[[ "${{ matrix.build-shared }}" == 'shared' ]] && BUILD_SHARED='ON' || BUILD_SHARED='OFF' | |
[[ "${{ matrix.with-64bit-int }}" == 'int64' ]] && WITH_INT64='ON' || WITH_INT64='OFF' | |
[[ "${{ matrix.with-openmp }}" == 'openmp' ]] && WITH_OPENMP='ON' || WITH_OPENMP='OFF' | |
[[ "${{ matrix.with-solver }}" == 'superlu' ]] && WITH_SUPERLU='ON' || WITH_SUPERLU='OFF' | |
[[ "${{ matrix.with-solver }}" == 'strumpack' ]] && WITH_STRUMPACK='ON' || WITH_STRUMPACK='OFF' | |
[[ "${{ matrix.with-solver }}" == 'mumps' ]] && WITH_MUMPS='ON' || WITH_MUMPS='OFF' | |
[[ "${{ matrix.with-eigensolver }}" == 'slepc' ]] && WITH_SLEPC='ON' || WITH_SLEPC='OFF' | |
[[ "${{ matrix.with-eigensolver }}" == 'arpack' ]] && WITH_ARPACK='ON' || WITH_ARPACK='OFF' | |
# Build and install | |
mkdir palace-build && cd palace-build | |
cmake .. \ | |
-DCMAKE_INSTALL_PREFIX=$(pwd)/../palace-install \ | |
-DBUILD_SHARED_LIBS=$BUILD_SHARED \ | |
-DPALACE_WITH_64BIT_INT=$WITH_INT64 \ | |
-DPALACE_WITH_OPENMP=$WITH_OPENMP \ | |
-DPALACE_WITH_SUPERLU=$WITH_SUPERLU \ | |
-DPALACE_WITH_STRUMPACK=$WITH_STRUMPACK \ | |
-DPALACE_WITH_MUMPS=$WITH_MUMPS \ | |
-DPALACE_WITH_SLEPC=$WITH_SLEPC \ | |
-DPALACE_WITH_ARPACK=$WITH_ARPACK | |
make -j$NUM_PROC_BUILD | |
- name: Run tests | |
env: | |
NUM_PROC_TEST_MAX: '8' | |
run: | | |
# Configure environment | |
if [[ "${{ matrix.compiler }}" == 'intel' ]] || \ | |
[[ "${{ matrix.mpi }}" == 'intelmpi' ]] || \ | |
[[ "${{ matrix.math-libs }}" == 'intelmkl' ]]; then | |
source /opt/intel/oneapi/setvars.sh # Sets PATH, MKLROOT | |
fi | |
export NUM_PROC_TEST=$(nproc 2> /dev/null || sysctl -n hw.ncpu) | |
if [[ "$NUM_PROC_TEST" -gt "$NUM_PROC_TEST_MAX" ]]; then | |
NUM_PROC_TEST=$NUM_PROC_TEST_MAX | |
fi | |
export PATH=$(pwd)/palace-install/bin:$PATH | |
if [[ "${{ matrix.math-libs }}" == 'aocl' ]]; then | |
export AOCLROOT=/opt/amd | |
export LD_LIBRARY_PATH=$AOCLROOT/lib:$LD_LIBRARY_PATH | |
fi | |
# Run tests | |
julia --project=test -e 'using Pkg; Pkg.instantiate()' | |
julia --project=test --color=yes test/runtests.jl |