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.
203 lines
7.3 KiB
Fortran
203 lines
7.3 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.
|
||
|
!
|
||
|
!
|
||
14 years ago
|
!
|
||
|
!
|
||
|
!
|
||
|
! Identity solver. Reference for nullprec.
|
||
|
!
|
||
|
!
|
||
4 years ago
|
module amg_s_id_solver
|
||
14 years ago
|
|
||
4 years ago
|
use amg_s_base_solver_mod
|
||
14 years ago
|
|
||
4 years ago
|
type, extends(amg_s_base_solver_type) :: amg_s_id_solver_type
|
||
14 years ago
|
contains
|
||
13 years ago
|
procedure, pass(sv) :: build => s_id_solver_bld
|
||
4 years ago
|
procedure, pass(sv) :: clone => amg_s_id_solver_clone
|
||
|
procedure, pass(sv) :: apply_v => amg_s_id_solver_apply_vect
|
||
|
procedure, pass(sv) :: apply_a => amg_s_id_solver_apply
|
||
13 years ago
|
procedure, pass(sv) :: free => s_id_solver_free
|
||
|
procedure, pass(sv) :: descr => s_id_solver_descr
|
||
12 years ago
|
procedure, nopass :: get_fmt => s_id_solver_get_fmt
|
||
8 years ago
|
procedure, nopass :: get_id => s_id_solver_get_id
|
||
4 years ago
|
end type amg_s_id_solver_type
|
||
14 years ago
|
|
||
|
|
||
13 years ago
|
private :: s_id_solver_bld, &
|
||
12 years ago
|
& s_id_solver_free, s_id_solver_get_fmt, &
|
||
8 years ago
|
& s_id_solver_descr, s_id_solver_get_id
|
||
14 years ago
|
|
||
13 years ago
|
interface
|
||
4 years ago
|
subroutine amg_s_id_solver_apply_vect(alpha,sv,x,beta,y,desc_data,&
|
||
7 years ago
|
& trans,work,wv,info,init,initu)
|
||
13 years ago
|
import :: psb_desc_type, psb_sspmat_type, psb_s_base_sparse_mat, &
|
||
12 years ago
|
& psb_s_vect_type, psb_s_base_vect_type, psb_spk_, &
|
||
4 years ago
|
& amg_s_id_solver_type, psb_ipk_
|
||
12 years ago
|
type(psb_desc_type), intent(in) :: desc_data
|
||
4 years ago
|
class(amg_s_id_solver_type), intent(inout) :: sv
|
||
13 years ago
|
type(psb_s_vect_type),intent(inout) :: x
|
||
|
type(psb_s_vect_type),intent(inout) :: y
|
||
12 years ago
|
real(psb_spk_),intent(in) :: alpha,beta
|
||
|
character(len=1),intent(in) :: trans
|
||
|
real(psb_spk_),target, intent(inout) :: work(:)
|
||
7 years ago
|
type(psb_s_vect_type),intent(inout) :: wv(:)
|
||
12 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
9 years ago
|
character, intent(in), optional :: init
|
||
|
type(psb_s_vect_type),intent(inout), optional :: initu
|
||
4 years ago
|
end subroutine amg_s_id_solver_apply_vect
|
||
13 years ago
|
end interface
|
||
13 years ago
|
|
||
13 years ago
|
interface
|
||
4 years ago
|
subroutine amg_s_id_solver_apply(alpha,sv,x,beta,y,desc_data,&
|
||
9 years ago
|
& trans,work,info,init,initu)
|
||
13 years ago
|
import :: psb_desc_type, psb_sspmat_type, psb_s_base_sparse_mat, &
|
||
12 years ago
|
& psb_s_vect_type, psb_s_base_vect_type, psb_spk_, &
|
||
4 years ago
|
& amg_s_id_solver_type, psb_ipk_
|
||
13 years ago
|
type(psb_desc_type), intent(in) :: desc_data
|
||
4 years ago
|
class(amg_s_id_solver_type), intent(inout) :: sv
|
||
13 years ago
|
real(psb_spk_),intent(inout) :: x(:)
|
||
|
real(psb_spk_),intent(inout) :: y(:)
|
||
|
real(psb_spk_),intent(in) :: alpha,beta
|
||
|
character(len=1),intent(in) :: trans
|
||
|
real(psb_spk_),target, intent(inout) :: work(:)
|
||
12 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
9 years ago
|
character, intent(in), optional :: init
|
||
|
real(psb_spk_),intent(inout), optional :: initu(:)
|
||
4 years ago
|
end subroutine amg_s_id_solver_apply
|
||
13 years ago
|
end interface
|
||
14 years ago
|
|
||
12 years ago
|
interface
|
||
4 years ago
|
subroutine amg_s_id_solver_clone(sv,svout,info)
|
||
12 years ago
|
import :: psb_desc_type, psb_sspmat_type, psb_s_base_sparse_mat, &
|
||
|
& psb_s_vect_type, psb_s_base_vect_type, psb_spk_, &
|
||
4 years ago
|
& amg_s_base_solver_type, amg_s_id_solver_type, psb_ipk_
|
||
12 years ago
|
Implicit None
|
||
|
|
||
|
! Arguments
|
||
4 years ago
|
class(amg_s_id_solver_type), intent(inout) :: sv
|
||
|
class(amg_s_base_solver_type), allocatable, intent(inout) :: svout
|
||
12 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
4 years ago
|
end subroutine amg_s_id_solver_clone
|
||
12 years ago
|
end interface
|
||
|
|
||
14 years ago
|
contains
|
||
|
|
||
|
|
||
8 years ago
|
subroutine s_id_solver_bld(a,desc_a,sv,info,b,amold,vmold,imold)
|
||
14 years ago
|
|
||
|
Implicit None
|
||
|
|
||
|
! Arguments
|
||
13 years ago
|
type(psb_sspmat_type), intent(in), target :: a
|
||
6 years ago
|
Type(psb_desc_type), Intent(inout) :: desc_a
|
||
4 years ago
|
class(amg_s_id_solver_type), intent(inout) :: sv
|
||
11 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
13 years ago
|
type(psb_sspmat_type), intent(in), target, optional :: b
|
||
|
class(psb_s_base_sparse_mat), intent(in), optional :: amold
|
||
|
class(psb_s_base_vect_type), intent(in), optional :: vmold
|
||
11 years ago
|
class(psb_i_base_vect_type), intent(in), optional :: imold
|
||
14 years ago
|
! Local variables
|
||
12 years ago
|
integer(psb_ipk_) :: n_row,n_col, nrow_a, nztota
|
||
14 years ago
|
real(psb_spk_), pointer :: ww(:), aux(:), tx(:),ty(:)
|
||
12 years ago
|
integer(psb_ipk_) :: i, err_act, debug_unit, debug_level
|
||
14 years ago
|
character(len=20) :: name='s_id_solver_bld', ch_err
|
||
|
|
||
|
info=psb_success_
|
||
|
|
||
|
return
|
||
|
end subroutine s_id_solver_bld
|
||
|
|
||
|
subroutine s_id_solver_free(sv,info)
|
||
|
|
||
|
Implicit None
|
||
|
|
||
|
! Arguments
|
||
4 years ago
|
class(amg_s_id_solver_type), intent(inout) :: sv
|
||
12 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
|
integer(psb_ipk_) :: err_act
|
||
|
character(len=20) :: name='s_id_solver_free'
|
||
14 years ago
|
|
||
|
info = psb_success_
|
||
|
|
||
|
return
|
||
|
end subroutine s_id_solver_free
|
||
|
|
||
14 years ago
|
subroutine s_id_solver_descr(sv,info,iout,coarse)
|
||
14 years ago
|
|
||
|
Implicit None
|
||
|
|
||
|
! Arguments
|
||
4 years ago
|
class(amg_s_id_solver_type), intent(in) :: sv
|
||
12 years ago
|
integer(psb_ipk_), intent(out) :: info
|
||
|
integer(psb_ipk_), intent(in), optional :: iout
|
||
13 years ago
|
logical, intent(in), optional :: coarse
|
||
14 years ago
|
|
||
|
! Local variables
|
||
12 years ago
|
integer(psb_ipk_) :: err_act
|
||
4 years ago
|
character(len=20), parameter :: name='amg_s_id_solver_descr'
|
||
12 years ago
|
integer(psb_ipk_) :: iout_
|
||
14 years ago
|
|
||
|
info = psb_success_
|
||
|
if (present(iout)) then
|
||
|
iout_ = iout
|
||
|
else
|
||
8 years ago
|
iout_ = psb_out_unit
|
||
14 years ago
|
endif
|
||
|
|
||
|
write(iout_,*) ' Identity local solver '
|
||
|
|
||
|
return
|
||
|
|
||
|
end subroutine s_id_solver_descr
|
||
|
|
||
12 years ago
|
function s_id_solver_get_fmt() result(val)
|
||
|
implicit none
|
||
|
character(len=32) :: val
|
||
|
|
||
|
val = "Identity solver"
|
||
|
end function s_id_solver_get_fmt
|
||
|
|
||
8 years ago
|
function s_id_solver_get_id() result(val)
|
||
|
implicit none
|
||
|
integer(psb_ipk_) :: val
|
||
|
|
||
4 years ago
|
val = amg_f_none_
|
||
8 years ago
|
end function s_id_solver_get_id
|
||
12 years ago
|
|
||
4 years ago
|
end module amg_s_id_solver
|