You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
5.6 KiB
Fortran
140 lines
5.6 KiB
Fortran
8 years ago
|
!
|
||
|
!
|
||
4 years ago
|
! AMG4PSBLAS version 1.0
|
||
|
! Algebraic Multigrid Package
|
||
8 years ago
|
! based on PSBLAS (Parallel Sparse BLAS version 3.5)
|
||
8 years ago
|
!
|
||
4 years ago
|
! (C) Copyright 2020
|
||
8 years ago
|
!
|
||
7 years ago
|
! Salvatore Filippone
|
||
|
! Pasqua D'Ambra
|
||
4 years ago
|
! Fabio Durastante
|
||
8 years ago
|
!
|
||
|
! 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.
|
||
4 years ago
|
! 3. The name of the AMG4PSBLAS group or the names of its contributors may
|
||
8 years ago
|
! 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
|
||
4 years ago
|
! PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AMG4PSBLAS GROUP OR ITS CONTRIBUTORS
|
||
8 years ago
|
! 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.
|
||
|
!
|
||
|
!
|
||
4 years ago
|
! File: amg_c_prec_mod.f90
|
||
14 years ago
|
!
|
||
4 years ago
|
! Module: amg_c_prec_mod
|
||
14 years ago
|
!
|
||
5 years ago
|
! This module defines the user interfaces to the real/complex, single/double
|
||
14 years ago
|
! precision versions of the user-level MLD2P4 routines.
|
||
|
!
|
||
4 years ago
|
module amg_c_prec_mod
|
||
14 years ago
|
|
||
4 years ago
|
use amg_c_prec_type
|
||
|
use amg_c_jac_smoother
|
||
|
use amg_c_as_smoother
|
||
|
use amg_c_id_solver
|
||
|
use amg_c_diag_solver
|
||
|
use amg_c_l1_diag_solver
|
||
|
use amg_c_ilu_solver
|
||
|
use amg_c_gs_solver
|
||
9 years ago
|
|
||
4 years ago
|
interface amg_precset
|
||
|
module procedure amg_c_iprecsetsm, amg_c_iprecsetsv, &
|
||
|
& amg_c_cprecseti, amg_c_cprecsetc, amg_c_cprecsetr, &
|
||
|
& amg_c_iprecsetag
|
||
|
end interface amg_precset
|
||
14 years ago
|
|
||
4 years ago
|
interface amg_extprol_bld
|
||
|
subroutine amg_c_extprol_bld(a,desc_a,p,prolv,restrv,info,amold,vmold,imold)
|
||
9 years ago
|
import :: psb_cspmat_type, psb_desc_type, psb_spk_, &
|
||
|
& psb_c_base_sparse_mat, psb_c_base_vect_type, &
|
||
4 years ago
|
& psb_i_base_vect_type, amg_cprec_type, psb_ipk_
|
||
9 years ago
|
|
||
9 years ago
|
! Arguments
|
||
|
type(psb_cspmat_type),intent(in), target :: a
|
||
|
type(psb_cspmat_type),intent(inout), target :: prolv(:)
|
||
|
type(psb_cspmat_type),intent(inout), target :: restrv(:)
|
||
|
type(psb_desc_type), intent(inout), target :: desc_a
|
||
4 years ago
|
type(amg_cprec_type),intent(inout),target :: p
|
||
9 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
|
class(psb_c_base_sparse_mat), intent(in), optional :: amold
|
||
|
class(psb_c_base_vect_type), intent(in), optional :: vmold
|
||
|
class(psb_i_base_vect_type), intent(in), optional :: imold
|
||
|
! !$ character, intent(in), optional :: upd
|
||
4 years ago
|
end subroutine amg_c_extprol_bld
|
||
|
end interface amg_extprol_bld
|
||
9 years ago
|
|
||
14 years ago
|
contains
|
||
|
|
||
4 years ago
|
subroutine amg_c_iprecsetsm(p,val,info,pos)
|
||
|
type(amg_cprec_type), intent(inout) :: p
|
||
|
class(amg_c_base_smoother_type), intent(in) :: val
|
||
12 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
9 years ago
|
character(len=*), optional, intent(in) :: pos
|
||
13 years ago
|
|
||
9 years ago
|
call p%set(val,info,pos=pos)
|
||
4 years ago
|
end subroutine amg_c_iprecsetsm
|
||
13 years ago
|
|
||
4 years ago
|
subroutine amg_c_iprecsetsv(p,val,info,pos)
|
||
|
type(amg_cprec_type), intent(inout) :: p
|
||
|
class(amg_c_base_solver_type), intent(in) :: val
|
||
12 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
9 years ago
|
character(len=*), optional, intent(in) :: pos
|
||
|
call p%set(val,info, pos=pos)
|
||
4 years ago
|
end subroutine amg_c_iprecsetsv
|
||
13 years ago
|
|
||
4 years ago
|
subroutine amg_c_iprecsetag(p,val,info,pos)
|
||
|
type(amg_cprec_type), intent(inout) :: p
|
||
|
class(amg_c_base_aggregator_type), intent(in) :: val
|
||
7 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
|
character(len=*), optional, intent(in) :: pos
|
||
|
call p%set(val,info, pos=pos)
|
||
4 years ago
|
end subroutine amg_c_iprecsetag
|
||
7 years ago
|
|
||
4 years ago
|
subroutine amg_c_cprecseti(p,what,val,info,pos)
|
||
|
type(amg_cprec_type), intent(inout) :: p
|
||
12 years ago
|
character(len=*), intent(in) :: what
|
||
|
integer(psb_ipk_), intent(in) :: val
|
||
|
integer(psb_ipk_), intent(out) :: info
|
||
9 years ago
|
character(len=*), optional, intent(in) :: pos
|
||
12 years ago
|
|
||
9 years ago
|
call p%set(what,val,info,pos=pos)
|
||
4 years ago
|
end subroutine amg_c_cprecseti
|
||
12 years ago
|
|
||
4 years ago
|
subroutine amg_c_cprecsetr(p,what,val,info,pos)
|
||
|
type(amg_cprec_type), intent(inout) :: p
|
||
12 years ago
|
character(len=*), intent(in) :: what
|
||
|
real(psb_spk_), intent(in) :: val
|
||
|
integer(psb_ipk_), intent(out) :: info
|
||
9 years ago
|
character(len=*), optional, intent(in) :: pos
|
||
12 years ago
|
|
||
9 years ago
|
call p%set(what,val,info,pos=pos)
|
||
4 years ago
|
end subroutine amg_c_cprecsetr
|
||
12 years ago
|
|
||
4 years ago
|
subroutine amg_c_cprecsetc(p,what,val,info,pos)
|
||
|
type(amg_cprec_type), intent(inout) :: p
|
||
12 years ago
|
character(len=*), intent(in) :: what
|
||
|
character(len=*), intent(in) :: val
|
||
|
integer(psb_ipk_), intent(out) :: info
|
||
9 years ago
|
character(len=*), optional, intent(in) :: pos
|
||
12 years ago
|
|
||
9 years ago
|
call p%set(what,val,info,pos=pos)
|
||
4 years ago
|
end subroutine amg_c_cprecsetc
|
||
12 years ago
|
|
||
4 years ago
|
end module amg_c_prec_mod
|