From 0956de513baf50af4aed9cc40c1d4c760ac03dd6 Mon Sep 17 00:00:00 2001 From: Luca Heltai Date: Wed, 5 Mar 2025 16:05:47 +0100 Subject: [PATCH] Added support for PSBLAS library. --- cmake/configure/configure_50_psblas.cmake | 19 + cmake/modules/FindDEAL_II_PSBLAS.cmake | 66 ++ doc/external-libs/psblas.html | 56 ++ doc/news/changes/major/20250312LucaHeltai | 5 + doc/readme.html | 917 +++++++++++++--------- include/deal.II/base/config.h.in | 1 + tests/psblas/CMakeLists.txt | 6 + tests/psblas/find_psblas.cc | 67 ++ tests/psblas/find_psblas.mpirun=2.output | 2 + 9 files changed, 765 insertions(+), 374 deletions(-) create mode 100644 cmake/configure/configure_50_psblas.cmake create mode 100644 cmake/modules/FindDEAL_II_PSBLAS.cmake create mode 100644 doc/external-libs/psblas.html create mode 100644 doc/news/changes/major/20250312LucaHeltai create mode 100644 tests/psblas/CMakeLists.txt create mode 100644 tests/psblas/find_psblas.cc create mode 100644 tests/psblas/find_psblas.mpirun=2.output diff --git a/cmake/configure/configure_50_psblas.cmake b/cmake/configure/configure_50_psblas.cmake new file mode 100644 index 0000000000..63cbc85f92 --- /dev/null +++ b/cmake/configure/configure_50_psblas.cmake @@ -0,0 +1,19 @@ +## ------------------------------------------------------------------------ +## +## SPDX-License-Identifier: LGPL-2.1-or-later +## Copyright (C) 2017 - 2022 by the deal.II authors +## +## This file is part of the deal.II library. +## +## Part of the source code is dual licensed under Apache-2.0 WITH +## LLVM-exception OR LGPL-2.1-or-later. Detailed license information +## governing the source code and code contributions can be found in +## LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II. +## +## ------------------------------------------------------------------------ + +# +# Configuration for the PSBLAS library: +# + +configure_feature(PSBLAS) diff --git a/cmake/modules/FindDEAL_II_PSBLAS.cmake b/cmake/modules/FindDEAL_II_PSBLAS.cmake new file mode 100644 index 0000000000..33c82e0ea7 --- /dev/null +++ b/cmake/modules/FindDEAL_II_PSBLAS.cmake @@ -0,0 +1,66 @@ +## ------------------------------------------------------------------------ +## +## SPDX-License-Identifier: LGPL-2.1-or-later +## Copyright (C) 2017 - 2022 by the deal.II authors +## +## This file is part of the deal.II library. +## +## Part of the source code is dual licensed under Apache-2.0 WITH +## LLVM-exception OR LGPL-2.1-or-later. Detailed license information +## governing the source code and code contributions can be found in +## LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II. +## +## ------------------------------------------------------------------------ + +# +# Try to find the PSBLAS library +# +# This module exports +# +# PSBLAS_LIBRARY +# PSBLAS_INCLUDE_DIR +# + +set(PSBLAS_DIR "" CACHE PATH "An optional hint to a PSBLAS installation containing the PSBLAS include directory and libraries") +set_if_empty(PSBLAS_DIR "$ENV{PSBLAS_DIR}") + +set(_psblas_libs "psb_base;psb_cbind;psb_krylov;psb_prec;psb_util") +set(_psblas_library_variables "") + +foreach(_lib ${_psblas_libs}) + string(TOUPPER ${_lib} _lib_upper) + string(REPLACE "PSB_" "PSBLAS_" _var_name "${_lib_upper}_LIBRARY") + deal_ii_find_library(${_var_name} + NAMES ${_lib} + HINTS ${PSBLAS_DIR} + PATH_SUFFIXES lib${LIB_SUFFIX} lib64 lib + ) + list(APPEND _psblas_library_variables ${_var_name}) +endforeach() + +deal_ii_find_path(PSBLAS_INCLUDE_DIR psb_c_base.h + HINTS ${PSBLAS_DIR} + PATH_SUFFIXES include + ) + +set(_additional_libraries "") +set(_fortran_libs ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}) +# Arbitrarily set this to gfortran and m, if they are not found, the user will +# have to set them manually +set_if_empty(_fortran_libs gfortran quadmath m) + +foreach(_lib ${_fortran_libs}) + find_system_library(${_lib}_LIBRARY NAMES ${_lib}) + list(APPEND _additional_libraries ${_lib}_LIBRARY) +endforeach() + +process_feature(PSBLAS + LIBRARIES + REQUIRED + ${_psblas_library_variables} + ${_additional_libraries} + INCLUDE_DIRS + REQUIRED PSBLAS_INCLUDE_DIR + CLEAR + ${_psblas_library_variables} ${_additional_libraries} PSBLAS_INCLUDE_DIR + ) diff --git a/doc/external-libs/psblas.html b/doc/external-libs/psblas.html new file mode 100644 index 0000000000..364ee80a94 --- /dev/null +++ b/doc/external-libs/psblas.html @@ -0,0 +1,56 @@ + + + + + The deal.II Readme on interfacing to PSBLAS + + + + + + + +

Interfacing deal.II to PSBLAS

+ +

+ PSBLAS is + The PSBLAS library, developed with the aim to facilitate the parallelization of computationally intensive scientific + applications, is designed to address parallel implementation of iterative solvers for sparse linear systems through + the distributed memory paradigm. It includes routines for multiplying sparse matrices by dense matrices, solving + block diagonal systems with triangular diagonal entries, preprocessing sparse matrices, and contains additional + routines for dense matrix operations. The current implementation of PSBLAS addresses a distributed memory execution + model operating with message passing, and supports GPU and Multithread acceleration. PSBLAS is part of PSCToolkit: Parallel Sparse Computation Toolkit. + + The PSBLAS library version 3 is implemented in the Fortran 2003 programming language, with reuse and/or adaptation + of existing Fortran 77 and Fortran 95 software, plus a handful of C routines. See the PSBLAS documentation for more details. +

+ +

+ deal.II has wrapper classes to the linear algebra + parts of PSBLAS that provide almost the + same interfaces as the built-in deal.II linear algebra operations. +

+ +

Installing deal.II with PSBLAS

+ +

+ During the CMake configuration, the following flags should be specified: +

+

+ +
+
+ + Valid HTML 4.01! + + Valid CSS! +
+ + + diff --git a/doc/news/changes/major/20250312LucaHeltai b/doc/news/changes/major/20250312LucaHeltai new file mode 100644 index 0000000000..c3673b5c08 --- /dev/null +++ b/doc/news/changes/major/20250312LucaHeltai @@ -0,0 +1,5 @@ +Added support for the PSBLAS library: Parallel Sparse BLAS. A library of +distributed sparse linear algebra with support for GPU and Multithread +acceleration. Part of the PSCToolkit: Parallel Sparse Computation Toolkit. +
+(Luca Heltai, 2025/03/12) diff --git a/doc/readme.html b/doc/readme.html index 204efa2f20..b1c750179f 100644 --- a/doc/readme.html +++ b/doc/readme.html @@ -1,5 +1,5 @@ - + @@ -35,9 +35,9 @@
  • Selecting optional compilation features
  • Selecting optional library features
  • Optional interfaces to - other software packages
  • + other software packages
  • More information on configuring - and building the library
  • + and building the library @@ -53,36 +53,35 @@

    Supported platforms

    - deal.II is a platform-independent library - written in - C++, with configuration and build support provided by - CMake. - Until deal.II version 9.5, deal.II used the C++14 - standard; subsequent versions require C++17 (see - here - for PDFs of the various C++ standards). + deal.II is a platform-independent library + written in + C++, with configuration and build support provided by + CMake. + Until deal.II version 9.5, deal.II used the C++14 + standard; subsequent versions require C++17 (see + here + for PDFs of the various C++ standards).

    - The easiest way to install deal.II is to use - the many packages - available for different platforms. - But it can of course also be compiled from scratch. - Given that C++ compilers and CMake are available on a wide - variety of platforms, deal.II can be compiled - on most widely used systems. In particular, we regularly test - that it can be compiled using the GCC compiler (on Linux and - Windows), Clang (on Linux, and both Intel- and ARM-based Apple - Mac systems via Xcode), the Intel compiler (on Linux), and Microsoft - Visual Studio (on Microsoft Windows), as long as these compilers - are sufficiently new to support the required language - standard. You may want to take a look - at deal.II Wiki for instructions on specific - platforms. In general, most combinations of POSIX-style operating systems - and C++ Standard compliant compilers should work. If they - don't, please - report it as a bug. + The easiest way to install deal.II is to use + the many packages + available for different platforms. + But it can of course also be compiled from scratch. + Given that C++ compilers and CMake are available on a wide + variety of platforms, deal.II can be compiled + on most widely used systems. In particular, we regularly test + that it can be compiled using the GCC compiler (on Linux and + Windows), Clang (on Linux, and both Intel- and ARM-based Apple + Mac systems via Xcode), the Intel compiler (on Linux), and Microsoft + Visual Studio (on Microsoft Windows), as long as these compilers + are sufficiently new to support the required language + standard. You may want to take a look + at deal.II Wiki for instructions on specific + platforms. In general, most combinations of POSIX-style operating systems + and C++ Standard compliant compilers should work. If they + don't, please + report it as a bug.

    @@ -98,8 +97,7 @@
  • - GNU make (version 3.78 or later), or any + GNU make (version 3.78 or later), or any other generator supported by CMake such as Ninja or Visual Studio.
  • @@ -114,8 +112,12 @@
  • For debugging programs, we have found that the GNU - debugger GDB is an invaluable tool. GDB is a text-based tool not always easy to use; kdbg, is one of many graphical user interfaces for it. Most integrated development environments - like kdevelop or Eclipse have built in debuggers as well. deal.II has some support for pretty printing its own classes + debugger GDB is an invaluable tool. GDB is a text-based tool not always easy to use; kdbg, is one of many graphical user interfaces for it. + Most integrated development environments + like kdevelop or Eclipse have built in debuggers as well. deal.II has some support + for pretty printing its own classes through GDB; see the GDB configuration guide for setup information.
  • @@ -124,7 +126,7 @@ The library generates output in formats readable by GNUPLOT, GMV - (general mesh viewer), + (general mesh viewer), Tecplot (ASCII and binary), Visualization Toolkit (Vtk), AVS Explorer, @@ -133,15 +135,21 @@

    - gnuplot and a postscript viewer (for eps) should be available almost everywhere. In the last few years, most new visualization programs have moved to support - vtk/vtu format. There are a number of excellent programs that can read vtk and + gnuplot and a postscript viewer (for eps) should be available almost + everywhere. In the last few years, most new visualization programs have moved to support + vtk/vtu format. There are a number of excellent programs that can read + vtk and vtu, such as VisIt, - ParaView, as well as others. Povray is freely available for almost all platforms. AVS is a commercial program available for most Unix flavors. Tecplot is a commercial program available + ParaView, as well as others. Povray is freely + available for almost all platforms. AVS is a commercial program available for most Unix flavors. Tecplot + is a commercial program available for Windows and most Unix platforms.

    - In case you didn't find your favorite graphics format above, adding a new writer to deal.II is not too difficult, as only a simple intermediate format needs to be converted into output (without references to cells, nodes, + In case you didn't find your favorite graphics format above, adding a new writer to + deal.II is not too difficult, as only a simple intermediate format needs to be + converted into output (without references to cells, nodes, types of finite elements, and the like).

    @@ -154,7 +162,8 @@

    Unpacking

    - The whole library usually comes as a tar.gz file, which is a file archive compressed with gzip. After downloading it, unpack it using either + The whole library usually comes as a tar.gz file, which is a file archive compressed with gzip. + After downloading it, unpack it using either

       gunzip deal.II-X.Y.Z.tar.gz
    @@ -165,7 +174,9 @@
       tar -xvf deal.II-X.Y.Z.tar.gz
         
    -

    Note: You will want to hang on to the source files of deal.II after installation as it makes developing much simpler. Consequently, you should do the steps above in a permanent directory, not on /tmp as one often +

    Note: You will want to hang on to the source files of deal.II after installation as it + makes developing much simpler. Consequently, you should do the steps above in a permanent directory, not on + /tmp as one often does when installing software.

    @@ -174,7 +185,11 @@

    deal.II uses the - CMake integrated configuration and build system. Unpacking will create a subdirectory deal.II/ in the current directory. Then do the following steps to configure the build process (make sure the installation directory is not the same as the location where you unpacked deal.II/):

    + CMake integrated configuration and build system. Unpacking + will create a subdirectory deal.II/ in the current directory. Then do the following steps to configure + the build process (make sure the installation directory is not the same as the location where you unpacked + deal.II/): +

       mkdir build
    @@ -196,44 +211,59 @@
         machine.
     
         

    - These steps compile, link, install the deal.II library, and run a few consistency checks. The whole process should take between a few minutes and an hour, depending on your machine. + These steps compile, link, install the deal.II library, and run a few consistency checks. The whole process + should take between a few minutes and an hour, depending on your machine.

    - Notes:

    + Notes: +

    @@ -242,30 +272,42 @@

    - At this point, you have generated everything necessary to write programs based on deal.II. If you are new to + At this point, you have generated everything necessary to write programs based on deal.II. If + you are new to deal.II, you may want to continue with the tutorial.

    @@ -274,8 +316,10 @@

    Configuring and building the documentation

    - All the documentation about the version that you downloaded and that can be found at the - https://www.dealii.org/ domain can also be generated locally. To do so, invoke cmake in the build instructions above as follows: + All the documentation about the version that you downloaded and that can be found at the + https://www.dealii.org/ domain can also be generated locally. To do so, invoke cmake in the + build instructions above as follows:

    @@ -288,20 +332,29 @@
             As usual, you can pass -jN to make
             in order to use more than one processor.
             For this to succeed, you will need Perl 5.x,
    -        doxygen and dot (which is part of the GraphViz package) to be installed.
    +        doxygen and dot (which is part of the GraphViz package) to be installed.
         

    - The documentation contains links to pictures (e.g., for the tutorial programs) that are by default stored online at the dealii.org domain. If you want to use the documentation completely offline, you can run the contrib/utilities/makeofflinedoc.sh script in an installed documentation directory to download all images. + The documentation contains links to pictures (e.g., for the tutorial programs) that are by default stored online + at the dealii.org domain. If you want to use the documentation completely offline, you can run the + contrib/utilities/makeofflinedoc.sh script in an installed documentation directory to download all + images.

    -

    Finally, the default for locally installed documentation is to render formulas as images. You can force formulas to be displayed via the MathJax system by adding -DDEAL_II_DOXYGEN_USE_MATHJAX=ON to the CMake call above. These formulas - are then rendered natively by the browser. With -DDEAL_II_DOXYGEN_USE_ONLINE_MATHJAX=OFF CMake will try to find a local installation of MathJax scripts, otherwise the online version of the scripts will be used in the documentation. +

    Finally, the default for locally installed documentation is to render formulas as images. You can force formulas + to be displayed via the MathJax system by adding -DDEAL_II_DOXYGEN_USE_MATHJAX=ON to the CMake call + above. These formulas + are then rendered natively by the browser. With -DDEAL_II_DOXYGEN_USE_ONLINE_MATHJAX=OFF CMake will + try to find a local installation of MathJax scripts, otherwise the online version of the scripts will be used in + the documentation.

    Note: Generating this documentation can take a really long - time — running doxygen through our hundreds of thousands of lines of code can take 15-20 minutes even on a fast machine during which you will not get any output from make. + time — running doxygen through our hundreds of thousands of lines of code can take 15-20 minutes + even on a fast machine during which you will not get any output from make.

    @@ -309,9 +362,12 @@

    Configuration options

    - deal.II has a large number of optional interfaces to other libraries. By default, cmake will automatically - enable support for all external libraries it can find in default - paths. However, this behavior can be changed using command line switches to the initial call to cmake. A detailed description can be found here: Detailed build system description. + deal.II has a large number of optional interfaces to other libraries. By default, + cmake will automatically + enable support for all external libraries it can find in default + paths. However, this behavior can be changed using command line switches to the initial call to + cmake. A detailed description can be found here: Detailed build + system description.

    @@ -322,8 +378,11 @@

    Selecting optional compilation features

      -

    • Unity build: deal.II may be compiled with a unity build; that is, one may configure the build process so that the library is compiled as a few large files instead of many small ones. The unity build feature may be enabled by passing - the -DDEAL_II_UNITY_BUILD=ON argument to cmake. This feature is disabled by default. +
    • Unity build: deal.II may be compiled with a unity build; that is, one may configure the build + process so that the library is compiled as a few large files instead of many small ones. The unity build + feature may be enabled by passing + the -DDEAL_II_UNITY_BUILD=ON argument to cmake. This feature is disabled by + default.

    @@ -333,16 +392,21 @@
    • - Threading: By default, deal.II supports parallelism between multiple cores on the same machine using threads and a task-based model built on the - Threading Building Blocks. You can switch threading inside the library off by passing the -DDEAL_II_WITH_TBB=OFF argument to cmake. + Threading: By default, deal.II supports parallelism between multiple cores on the same machine + using threads and a task-based model built on the + Threading Building Blocks. You can + switch threading inside the library off by passing the -DDEAL_II_WITH_TBB=OFF argument to + cmake.

    • - MPI: To enable parallel computations beyond a single node using the Message - Passing Interface (MPI), pass the - -DDEAL_II_WITH_MPI=ON argument to cmake. If cmake found MPI but you specifically do not want to use it, then pass -DDEAL_II_WITH_MPI=OFF. + MPI: To enable parallel computations beyond a single node using the Message + Passing Interface (MPI), pass the + -DDEAL_II_WITH_MPI=ON argument to cmake. If cmake found MPI but + you specifically do not want to use it, then pass -DDEAL_II_WITH_MPI=OFF. The minimal supported version is MPI-3.0.

    • @@ -369,29 +433,37 @@

      When configuring interfacing to external libraries, the - cmake script by default tries to find all of these libraries in a number of standard locations on your file system. For optional interfaces, it gives up if the library is not found and deal.II will be built - without support for them. However, there is one interface that we need to have: BOOST 1.74 or newer. If it is not found externally cmake will resort to the bundled boost version + cmake script by default tries to find all of these libraries in a number of standard locations on + your file system. For optional interfaces, it gives up if the library is not found and + deal.II will be built + without support for them. However, there is one interface that we need to have: BOOST 1.74 or newer. If it is not found externally + cmake will resort to the bundled boost version that is part of the deal.II tar file.

      - The following paragraphs describe how the interfaces to the various packages, deal.II interacts with, can be configured. + The following paragraphs describe how the interfaces to the various packages, deal.II + interacts with, can be configured.

      Notes:

      • The majority of libraries mentioned below should be readily - packaged by most Linux distributions. Usually you need to - install a development version of a library package, - e.g. ending in -dev or -devel. - After that cmake will automatically find the - library and use it. + packaged by most Linux distributions. Usually you need to + install a development version of a library package, + e.g. ending in -dev or -devel. + After that cmake will automatically find the + library and use it.
      • Configuring the interface to a self compiled package, say foo can usually be done by specifying - -DFOO_DIR=/path/to/foo. Alternatively, you can set FOO_DIR as an environment variable in your - .bashrc or .cshrc file so that you do not have to enter this argument again the next time you invoke cmake in a fresh build directory. Any value passed on the command line wins over a value that may be + -DFOO_DIR=/path/to/foo. Alternatively, you can set FOO_DIR as an environment + variable in your + .bashrc or .cshrc file so that you do not have to enter this argument again the + next time you invoke cmake in a fresh build directory. Any value passed on the command line + wins over a value that may be found in an environment variable.
      • @@ -402,59 +474,81 @@
      -
      - ADOL-C
      +
      + ADOL-C +

      - ADOL-C is a package that facilitates the evaluation of first and higher derivatives of vector functions. In particular, it can be used for automatic differentiation. For using - ADOL-C with deal.II, version 2.6.4 or newer is required. To use a self compiled version, pass + ADOL-C is a package that facilitates the + evaluation of first and higher derivatives of vector functions. In particular, it can be used for + automatic differentiation. For using + ADOL-C with deal.II, version 2.6.4 or + newer is required. To use a self compiled version, pass -DADOLC_DIR=/path/to/adolc to the deal.II CMake call.

      -
      - ArborX
      +
      + ArborX +

      - ArborX is an open-source library designed to provide performance portable algorithms for geometric search, similarly to nanoflann and Boost Geometry. - To use a self compiled version, pass -DARBORX_DIR=/path/to/arborx to the deal.II CMake call. To use ArborX, deal.II needs to be configured with Kokkos support. + ArborX is an open-source library designed + to provide performance portable algorithms for geometric search, similarly to nanoflann and Boost + Geometry. + To use a self compiled version, pass -DARBORX_DIR=/path/to/arborx to the deal.II CMake + call. To use ArborX, deal.II needs to be + configured with Kokkos support.

      -
      - ARPACK
      +
      + ARPACK +

      - ARPACK is a library for computing large scale eigenvalue problems. - ARPACK should be readily packaged by most Linux distributions. To use a self compiled version, pass - -DARPACK_DIR=/path/to/arpack to the deal.II CMake call. For a detailed description on how to compile ARPACK and linking with deal.II, see + ARPACK is a library for computing + large scale eigenvalue problems. + ARPACK should be readily packaged + by most Linux distributions. To use a self compiled version, pass + -DARPACK_DIR=/path/to/arpack to the deal.II CMake call. For a detailed description on how + to compile ARPACK and linking with deal.II, see this page.

      -
      - Assimp
      +
      + Assimp +

      - is a portable Open Source library to import various well-known 3D model formats in a uniform manner. A subset of these formats can be read from within deal.II to generate two-dimensional + is a portable Open Source library to import various + well-known 3D model formats in a uniform manner. A subset of these formats can be read from within + deal.II to generate two-dimensional meshes, possibly embedded in a three-dimensional space. - Assimp should be readily packaged by most Linux distributions. To use a self compiled version, pass + Assimp should be readily packaged by most Linux + distributions. To use a self compiled version, pass -DASSIMP_DIR=/path/to/assimp to the deal.II CMake call.

      - - BLAS, - LAPACK -
      + + BLAS, + LAPACK +

      - BLAS (the Basic Linear Algebra Subroutines) and + BLAS (the Basic Linear Algebra + Subroutines) and LAPACK ( - Linear Algebra Package) are two packages that support low-level linear algebra operations on vectors and dense matrices. Both libraries should be packaged by almost all Linux distributions and found automatically whenever available. - (You might have to install development versions of the libraries for deal.II being able to use them). For details on how to set up deal.II with a non standard BLAS/LAPACK implementation, + Linear Algebra Package) are two packages that support low-level linear algebra operations on + vectors and dense matrices. Both libraries should be packaged by almost all Linux distributions and + found automatically whenever available. + (You might have to install development versions of the libraries for deal.II being + able to use them). For details on how to set up deal.II with a non standard + BLAS/LAPACK implementation, see this page.

      @@ -489,256 +583,325 @@
      CUDA

      - CUDA is a parallel computing platform and API model created by Nvidia. It allows software developers and software engineers to use CUDA-enabled GPU for general purpose processing. Details - about compatibility and configuration can be found here. -

      - -
      - Ginkgo
      -
      -

      - Ginkgo - is a numerical linear algebra library with highly optimized kernels - for many core architectures with a focus on fine level parallelism. - It allows for easy switching of the executing paradigm (CUDA, OpenMP, etc.) - while providing a multitude of linear solvers and preconditioners - and extension to other linear operators with minimal changes required in the code. - To enable Ginkgo, pass -DGINKGO_DIR=/path/to/ginkgo to CMake when - configuring deal.II. For more detailed instructions, one can refer to - this page. -

      -
      - -
      - Gmsh
      -
      -

      - Gmsh - is a 3D mesh generator. The executable can be used - to create meshes from within deal.II by specifying - the relevant input data. Gmsh should be readily - packaged by most Linux distributions. To use a - self compiled version, - pass -DGMSH_DIR=/path/to/gmsh to the - deal.II CMake call. Note that netgen, tetgen and - blas support has to be enabled in Gmsh. -

      -
      - -
      GSL
      -
      -

      - The GNU Scientific Library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting. - GSL should be readily packaged by most Linux distributions. To use a self compiled version, pass - -DGSL_DIR=/path/to/gsl to the deal.II CMake call. -

      -
      - -
      HDF5
      -
      -

      - The HDF5 library provides graphical output capabilities in HDF5/XDMF format. - HDF5 should be readily packaged by most Linux distributions. To use a self compiled version, pass - -DHDF5_DIR=/path/to/hdf5 to the deal.II CMake call. -

      -
      - -
      - Kokkos
      -
      -

      - Kokkos implements a programming model in C++ for writing performance portable applications targeting all major HPC platforms. - To use a self compiled version, pass -DKOKKOS_DIR=/path/to/kokkos to the deal.II CMake call. - The compiler must be able to compile code for all enabled backends. In case Cuda is enabled in Kokkos and nvcc should be used as device compiler, - it is recommended to use the nvcc_wrapper script that comes with Kokkos as C++ compiler. clang++ or nvc++ (for Kokkos >= 4.0) could be used directly as C++ compiler. - Also, Kokkos must be built with support for device lambdas, e.g., Kokkos_ENABLE_CUDA_LAMBDA=ON when configuring Kokkos with Cuda. For Kokkos >= 4.0 this is the default. -

      -
      - - -
      METIS
      -
      -

      - METIS is a library that provides various methods to partition graphs. deal.II uses it in programs like the step-17 tutorial to partition - a mesh for parallel computing. To use a self compiled version, pass - -DMETIS_DIR=/path/to/metis to the deal.II CMake call. - deal.II supports METIS 5 and later. -

      - -

      - Note: A more modern way to support parallel computations is shown in the step-40 tutorial program and is based on the p4est library instead of METIS. See below on installing p4est. -

      -
      - - -
      - - muparser -
      -
      -

      - muparser is a library that allows to enter functions in text form and have them interpreted at run time. This is particularly useful in input parameter files. cmake will usually - find the version of this library that comes bundled with deal.II, but you can specify -DMUPARSER_DIR=/path/to/muparser if desired. -

      -
      - -
      - - OpenCASCADE -
      -
      - Open CASCADE Technology is a software development kit for applications dealing with 3D CAD data, freely available in open source. Our internal interface works with the legacy version of OpenCASCADE, which you can download and install from the official - website, as well as with the OpenCASCADE Community Edition (OCE, available at - https://github.com/tpaviot/oce), which offers a cmake interface for its compilation. Alternatively, you can install one of the many external applications that ship with OpenCASCADE internally - (for example - SALOME, or - FreeCAD). Further installation instructions can be found here. -
      - -
      p4est
      -
      -

      - p4est is a library that deal.II uses to distribute very large meshes across multiple processors (think meshes with a billion cells on 10,000 processors). Using and - installing p4est is discussed here. To use a self compiled version, pass the argument - -DP4EST_DIR=/path/to/p4est to the - cmake command. -

      -
      - - -
      PETSc
      -
      -

      - PETSc is a library that supports parallel linear algebra and many other things. - - PETSc is already packaged by some Linux distributions and should be found automatically if present. To use a - self compiled version of PETSc, add -DPETSC_DIR=/path/to/petsc + CUDA is a parallel computing platform and API model + created by Nvidia. It allows software developers and software engineers to use CUDA-enabled GPU for + general purpose processing. Details + about compatibility and configuration can be found here. +

      + +
      + Ginkgo +
      +
      +

      + Ginkgo + is a numerical linear algebra library with highly optimized kernels + for many core architectures with a focus on fine level parallelism. + It allows for easy switching of the executing paradigm (CUDA, OpenMP, etc.) + while providing a multitude of linear solvers and preconditioners + and extension to other linear operators with minimal changes required in the code. + To enable Ginkgo, pass -DGINKGO_DIR=/path/to/ginkgo to CMake when + configuring deal.II. For more detailed instructions, one can refer to + this page. +

      +
      + +
      + Gmsh +
      +
      +

      + Gmsh + is a 3D mesh generator. The executable can be used + to create meshes from within deal.II by specifying + the relevant input data. Gmsh should be readily + packaged by most Linux distributions. To use a + self compiled version, + pass -DGMSH_DIR=/path/to/gmsh to the + deal.II CMake call. Note that netgen, tetgen and + blas support has to be enabled in Gmsh. +

      +
      + +
      GSL
      +
      +

      + The GNU Scientific Library provides a wide range of + mathematical routines such as random number generators, special functions and least-squares fitting. + GSL should be readily packaged by most Linux + distributions. To use a self compiled version, pass + -DGSL_DIR=/path/to/gsl to the deal.II CMake call. +

      +
      + +
      HDF5
      +
      +

      + The HDF5 library provides graphical output capabilities in + HDF5/XDMF format. + HDF5 should be readily packaged by most Linux + distributions. To use a self compiled version, pass + -DHDF5_DIR=/path/to/hdf5 to the deal.II CMake call. +

      +
      + +
      + Kokkos +
      +
      +

      + Kokkos implements a programming model in + C++ for writing performance portable applications targeting all major HPC platforms. + To use a self compiled version, pass -DKOKKOS_DIR=/path/to/kokkos to the deal.II CMake + call. + The compiler must be able to compile code for all enabled backends. In case Cuda is enabled in Kokkos + and nvcc should be used as device compiler, + it is recommended to use the nvcc_wrapper script that comes with Kokkos as C++ compiler. clang++ or + nvc++ (for Kokkos >= 4.0) could be used directly as C++ compiler. + Also, Kokkos must be built with support for device lambdas, e.g., Kokkos_ENABLE_CUDA_LAMBDA=ON when + configuring Kokkos with Cuda. For Kokkos >= 4.0 this is the default. +

      +
      + + +
      METIS +
      +
      +

      + METIS is a library + that provides various methods to partition graphs. deal.II uses it in programs like + the step-17 tutorial to partition + a mesh for parallel computing. To use a self compiled version, pass + -DMETIS_DIR=/path/to/metis to the deal.II CMake call. + deal.II supports METIS 5 and later. +

      + +

      + Note: A more modern way to support parallel computations is shown in the step-40 tutorial program + and is based on the p4est library instead of METIS. See below on installing + p4est. +

      +
      + + +
      + + muparser +
      +
      +

      + muparser is a library that allows to enter functions in + text form and have them interpreted at run time. This is particularly useful in input parameter files. + cmake will usually + find the version of this library that comes bundled with deal.II, but you can specify + -DMUPARSER_DIR=/path/to/muparser if desired. +

      +
      + +
      + + OpenCASCADE +
      +
      + Open CASCADE Technology is a software development kit for applications dealing with 3D CAD data, freely + available in open source. Our internal interface works with the legacy version of OpenCASCADE, which you can + download and install from the official + website, as well as with the OpenCASCADE Community Edition (OCE, available at + https://github.com/tpaviot/oce), which offers a cmake interface + for its compilation. Alternatively, you can install one of the many external applications that ship with + OpenCASCADE internally + (for example + SALOME, or + FreeCAD). Further installation instructions can be found here. +
      + +
      p4est
      +
      +

      + p4est is a library that deal.II + uses to distribute very large meshes across multiple processors (think meshes with a billion cells on + 10,000 processors). Using and + installing p4est is discussed here. To use a self + compiled version, pass the argument + -DP4EST_DIR=/path/to/p4est to the + cmake command. +

      +
      + +
      PETSc
      +
      +

      + PETSc is a library that supports parallel + linear algebra and many other things. + + PETSc is already packaged by some Linux + distributions and should be found automatically if present. To use a + self compiled version of PETSc, add -DPETSC_DIR=/path/to/petsc -DPETSC_ARCH=architecture to the argument list for - cmake. The values for these arguments must be the same as those specified when building PETSc. -

      - -

      - To disable the PETSc interfaces in cases where cmake automatically finds it, use -DDEAL_II_WITH_PETSC=OFF. More information on configuring and building PETSc can be found here. -

      -
      - - -
      - - ScaLAPACK -
      -
      -

      - scalapack is a library of high-performance linear algebra routines for parallel distributed memory machines. ScaLAPACK solves dense and banded linear systems, least squares problems, eigenvalue - problems, and singular value problems. In order to enable this feature, add - -DSCALAPACK_DIR=/path/to/scalapack to the argument list for - cmake. If ScaLAPACK does not have embedded BLACS, you might need to pass -DBLACS_DIR=/path/to/blacs as well. -

      -
      - - -
      SLEPc
      -
      -

      - SLEPc is a library for eigenvalue computations that builds on PETSc. Its configuration works just like that for PETSc, except that the variable to set is SLEPC_DIR. - For the interface with SLEPc to work, deal.II's PETSc interface must also be configured correctly (see above). -

      - -

      - To disable the SLEPc interfaces in cases where cmake automatically finds it, use -DDEAL_II_WITH_PETSC=OFF. More information on configuring and building SLEPc can be found here. -

      -
      - -
      - SUNDIALS
      -
      -

      - SUNDIALS is a collection of solvers for nonlinear and differential/algebraic equations. - SUNDIALS should be readily packaged by most Linux distributions. To use a self compiled version, - specify - -DSUNDIALS_DIR=/path/to/sundials to the deal.II CMake call. -

      -
      - -
      - SymEngine
      -
      -

      - SymEngine is a symbolic manipulation package, implementing the building blocks of a computer algebra system (CAS) similar to SymPy. In particular, it can be used for symbolic differentiation. For using - SymEngine with deal.II, version 0.4 or newer is required. To use a self compiled version, pass - -DSYMENGINE_DIR=/path/to/symengine to the deal.II CMake call. -

      -
      - -
      Threading Building Blocks (TBB)
      -
      -

      - The Threading Building Blocks (TBB) is a library that provides advanced services for using multiple processor cores on a single machine and is used in deal.II to parallelize many operations. If not found in a system-wide location, cmake will resort to the version bundled as part of the deal.II download. It is always enabled unless threads are explicitly disabled, - see above. -

      -
      - -
      Trilinos
      -
      -

      - Trilinos is a library for - parallel linear algebra and all sorts of other - things as well. To interface with a self compiled - version of Trilinos - add -DTRILINOS_DIR=/path/to/trilinos - to the argument list - for cmake. Alternatively, you can - also set an environment - variable TRILINOS_DIR - and cmake will pick up this path. -

      - -

      - To disable the Trilinos interfaces in cases where - cmake automatically finds it, use - -DDEAL_II_WITH_TRILINOS=OFF. More details about compatibility and configuration can be found - here. -

      -
      - - -
      UMFPACK
      -
      -

      - UMFPACK, which is part of SuiteSparse, is a sparse direct solver that we often use in prototype codes where the goal is to simply get a linear system solved robustly. - The interface will be enabled by default, either using a version installed on your system, or using the version that comes bundled with - deal.II. It can be disabled explicitly by using the - -DDEAL_II_WITH_UMFPACK=OFF - argument. It will also be disabled if no version - installed on the system can be found, and if the - version that comes bundled with deal.II cannot be - compiled, for example because no version of LAPACK - can be found. To use a self compiled version, pass the argument - -DUMFPACK_DIR=/path/to/umfpack to the - cmake command. -

      - -

      - SuiteSparse has its own license. To use it with - deal.II, please read it and make sure that you agree - with it. You can find the license of SuiteSparse inside - the SuiteSparse download at the link given above. We - include UMFPACK in the deal.II repository courtesy of - its author, Timothy A. Davis. -

      -
      + cmake. The values for these arguments must be the same as those specified when building + PETSc. +

      + +

      + To disable the PETSc interfaces in cases where cmake automatically finds it, use + -DDEAL_II_WITH_PETSC=OFF. More information on configuring and building PETSc can be found + here. +

      + + +
      PSBLAS
      +
      +

      + The PSBLAS library facilitates + the parallelization of scientific applications by providing routines for iterative solvers for sparse + linear systems, sparse matrix operations, and dense matrix operations using a distributed memory model, + both on CPUs and GPUs. +

      +

      + To disable the PSBLAS interfaces in cases where cmake automatically finds it, use + -DDEAL_II_WITH_PSBLAS=OFF. More information on configuring and building PSBLAS can be found + here. +

      +
      + + +
      + + ScaLAPACK +
      +
      +

      + scalapack is a library of high-performance linear + algebra routines for parallel distributed memory machines. ScaLAPACK solves dense and banded linear + systems, least squares problems, eigenvalue + problems, and singular value problems. In order to enable this feature, add + -DSCALAPACK_DIR=/path/to/scalapack to the argument list for + cmake. If ScaLAPACK does not have embedded BLACS, you might need to pass + -DBLACS_DIR=/path/to/blacs as well. +

      +
      + + +
      SLEPc
      +
      +

      + SLEPc is a library for eigenvalue computations that + builds on PETSc. Its configuration works just like that for PETSc, except that the variable to set is + SLEPC_DIR. + For the interface with SLEPc to work, deal.II's PETSc interface must also be + configured correctly (see above). +

      + +

      + To disable the SLEPc interfaces in cases where cmake automatically finds it, use + -DDEAL_II_WITH_PETSC=OFF. More information on configuring and building SLEPc can be found + here. +

      +
      + +
      + SUNDIALS +
      +
      +

      + SUNDIALS is a collection of + solvers for nonlinear and differential/algebraic equations. + SUNDIALS should be readily + packaged by most Linux distributions. To use a self compiled version, + specify + -DSUNDIALS_DIR=/path/to/sundials to the deal.II CMake call. +

      +
      + +
      + SymEngine +
      +
      +

      + SymEngine is a symbolic manipulation + package, implementing the building blocks of a computer algebra system (CAS) similar to SymPy. In particular, it can be used + for symbolic differentiation. For using + SymEngine with deal.II, version 0.4 or newer is + required. To use a self compiled version, pass + -DSYMENGINE_DIR=/path/to/symengine to the deal.II CMake call. +

      +
      + +
      Threading Building Blocks + (TBB)
      +
      +

      + The Threading Building Blocks (TBB) + is a library that provides advanced services for using multiple processor cores on a single machine and + is used in deal.II to parallelize many operations. If not found in a system-wide + location, cmake will resort to the version bundled as part of the + deal.II download. It is always enabled unless threads are explicitly disabled, + see above. +

      +
      + +
      Trilinos
      +
      +

      + Trilinos is a library for + parallel linear algebra and all sorts of other + things as well. To interface with a self compiled + version of Trilinos + add -DTRILINOS_DIR=/path/to/trilinos + to the argument list + for cmake. Alternatively, you can + also set an environment + variable TRILINOS_DIR + and cmake will pick up this path. +

      + +

      + To disable the Trilinos interfaces in cases where + cmake automatically finds it, use + -DDEAL_II_WITH_TRILINOS=OFF. More details about compatibility and configuration can be + found + here. +

      +
      + + +
      UMFPACK
      +
      +

      + UMFPACK, which is part of SuiteSparse, + is a sparse direct solver that we often use in prototype codes where the goal is to simply get a linear + system solved robustly. + The interface will be enabled by default, either using a version installed on your system, or using the + version that comes bundled with + deal.II. It can be disabled explicitly by using the + -DDEAL_II_WITH_UMFPACK=OFF + argument. It will also be disabled if no version + installed on the system can be found, and if the + version that comes bundled with deal.II cannot be + compiled, for example because no version of LAPACK + can be found. To use a self compiled version, pass the argument + -DUMFPACK_DIR=/path/to/umfpack to the + cmake command. +

      + +

      + SuiteSparse has its own license. To use it with + deal.II, please read it and make sure that you agree + with it. You can find the license of SuiteSparse inside + the SuiteSparse download at the link given above. We + include UMFPACK in the deal.II repository courtesy of + its author, Timothy A. Davis. +

      +
      -
      - VTK
      +
      + VTK +

      The Visualization Toolkit (VTK) is an open-source, @@ -746,7 +909,8 @@ scientific visualization, and 2D plotting. It supports a wide variety of visualization algorithms and advanced modeling techniques, - and it takes advantage of both threaded and distributed memory parallel processing for speed and scalability, + and it takes advantage of both threaded and distributed memory parallel processing for speed and + scalability, respectively. In order to use VTK, add @@ -754,12 +918,15 @@

      -
      - zlib
      +
      + zlib +

      - zlib is a software library used for lossless data-compression. It is used in deal.II whenever compressed data is to be written. - zlib should be readily packaged by most Linux distributions. To use a self compiled version, pass + zlib is a software library used for lossless data-compression. + It is used in deal.II whenever compressed data is to be written. + zlib should be readily packaged by most Linux distributions. + To use a self compiled version, pass -DZLIB_DIR=/path/to/zlib to the deal.II CMake call.

      @@ -768,7 +935,8 @@

      More information on configuring and building the library

      - The deal.II cmake system allows far greater control over what exactly is configured or built than just the outline above. If you want to learn more about this, take a look + The deal.II cmake system allows far greater control over what exactly is + configured or built than just the outline above. If you want to learn more about this, take a look here. You might also be interested in CMake for user projects or build system internals. @@ -777,9 +945,10 @@


      diff --git a/include/deal.II/base/config.h.in b/include/deal.II/base/config.h.in index 865ccf190a..f41f8fe776 100644 --- a/include/deal.II/base/config.h.in +++ b/include/deal.II/base/config.h.in @@ -113,6 +113,7 @@ DEAL_II_NAMESPACE_CLOSE #cmakedefine DEAL_II_WITH_OPENCASCADE #cmakedefine DEAL_II_WITH_P4EST #cmakedefine DEAL_II_WITH_PETSC +#cmakedefine DEAL_II_WITH_PSBLAS #cmakedefine DEAL_II_WITH_SCALAPACK #cmakedefine DEAL_II_WITH_SLEPC #cmakedefine DEAL_II_WITH_SUNDIALS diff --git a/tests/psblas/CMakeLists.txt b/tests/psblas/CMakeLists.txt new file mode 100644 index 0000000000..2b6f8dd738 --- /dev/null +++ b/tests/psblas/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.13.4) +include(../scripts/setup_testsubproject.cmake) +project(testsuite CXX) +if(DEAL_II_WITH_PSBLAS) + deal_ii_pickup_tests() +endif() diff --git a/tests/psblas/find_psblas.cc b/tests/psblas/find_psblas.cc new file mode 100644 index 0000000000..854710e847 --- /dev/null +++ b/tests/psblas/find_psblas.cc @@ -0,0 +1,67 @@ +// ------------------------------------------------------------------------ +// +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2014 - 2018 by the deal.II authors +// +// This file is part of the deal.II library. +// +// Part of the source code is dual licensed under Apache-2.0 WITH +// LLVM-exception OR LGPL-2.1-or-later. Detailed license information +// governing the source code and code contributions can be found in +// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II. +// +// ------------------------------------------------------------------------ + +// Try to compile a file that includes PSBLAS headers, and do an MPI hello world +// program using psblas interfaces. + +#include + +#include "../tests.h" + +#ifdef DEAL_II_WITH_64BIT_INDICES +# define IPK4 +# define LPK8 +#else +# define IPK4 +# define LPK4 +#endif + +#include "psb_base_cbind.h" + +int +main(int argc, char **argv) +{ + psb_i_t iam, np; + psb_c_ctxt *cctxt; + cctxt = psb_c_new_ctxt(); + psb_c_init(cctxt); + psb_c_info(*cctxt, &iam, &np); + + // We don't handle mpi ourselves, so we output stuff manually + std::string ofname = "output_" + std::to_string(iam); + std::ofstream output(ofname); + + output << "iam = " << iam << ", np = " << np << std::endl; + output.close(); + + // Add MPI barrier + psb_c_barrier(*cctxt); + + // Concatenate output_i to the file "output" + if (iam == 0) + { + std::ofstream final_output("output"); + for (int i = 0; i < np; i++) + { + std::string ofname = "output_" + std::to_string(i); + std::ifstream input(ofname); + final_output << input.rdbuf(); + input.close(); + std::remove(ofname.c_str()); + } + } + + psb_c_exit(*cctxt); + free(cctxt); +} diff --git a/tests/psblas/find_psblas.mpirun=2.output b/tests/psblas/find_psblas.mpirun=2.output new file mode 100644 index 0000000000..025211deca --- /dev/null +++ b/tests/psblas/find_psblas.mpirun=2.output @@ -0,0 +1,2 @@ +iam = 0, np = 2 +iam = 1, np = 2 -- 2.39.5