Add NVIDIA-GPU capabilities to your code
Tested on thousands of GPUs
Parallel Sparse BLAS GPU Plugin
 
        PSBLAS-EXT
Parallel Sparse BLAS GPU Plugin
PSBLAS-EXT
Add NVIDIA-GPU capabilities to your code
Tested on thousands of GPUs
Description
This is the extenstions plugin for PSBLAS
This package contains:
To build this code you need to have PSBLAS 3.8.0-2 or later, together with its prerequisites.
To make use of the NVIDIA GPU you’ll need:
Library releases for PSBLAS-EXT.
Library releases can be downloaded from: psblas3-ext/releases
./configure --prefix=/path/to/install \
            --with-psblas=/path/to/PSBLAS/install \
	    --with-cuda=/CUDA/install \
	    --with-spgpu=/SPGPU/install \
	    --with-librsb=/LIBRSB/install
make;
make install
Note: we have only tested with GNU Fortran compiler.
Note: CUDA nvcc typically lags behind the latest versions of GCC/GNU Fortran; currently nvcc supports GCC 8 so this is the preferred choice. Mixing SPGPU CUDA code compiled with an older version and the rest with e.g. 4.9 has worked fine so far: YMMV. See the docs at NVIDIA for further information on the compatibility between GCC and nvcc.
Improve MPI support.
Good preconditioners for the GPU. Performance of  triangular system
solves on the GPU is very bad: we enable it in CSRG and HYBG, we do
not even bother to implement it in ELG and HLG.
So if you use the GPU, you are limited to no preconditioning, or
diagonal scaling. We are working on an independent plugin that will deliver
better alternatives based on approximate inverses.
Report bugs to: https://github.com/sfilippone/psblas3-ext/issues
PSBLAS-EXT is distributed under the BSD 3-Clause license.
              Parallel Sparse BLAS  Extensions plugin 
    (C) Copyright 2014
                       Salvatore Filippone
                       Alessandro Fanfarillo
 
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions, and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. The name of the PSBLAS group or the names of its contributors may
       not be used to endorse or promote products derived from this
       software without specific written permission.
 
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PSBLAS GROUP OR ITS CONTRIBUTORS
  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  POSSIBILITY OF SUCH DAMAGE.