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.
1191 lines
43 KiB
Fortran
1191 lines
43 KiB
Fortran
!!$
|
|
!!$
|
|
!!$ MLD2P4 version 2.0
|
|
!!$ MultiLevel Domain Decomposition Parallel Preconditioners Package
|
|
!!$ based on PSBLAS (Parallel Sparse BLAS version 3.0)
|
|
!!$
|
|
!!$ (C) Copyright 2008,2009,2010
|
|
!!$
|
|
!!$ Salvatore Filippone University of Rome Tor Vergata
|
|
!!$ Alfredo Buttari CNRS-IRIT, Toulouse
|
|
!!$ Pasqua D'Ambra ICAR-CNR, Naples
|
|
!!$ Daniela di Serafino Second University of Naples
|
|
!!$
|
|
!!$ 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 MLD2P4 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 MLD2P4 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.
|
|
!!$
|
|
!!$
|
|
! File: mld_dprecset.f90
|
|
!
|
|
! Subroutine: mld_dprecseti
|
|
! Version: real
|
|
!
|
|
! This routine sets the integer parameters defining the preconditioner. More
|
|
! precisely, the integer parameter identified by 'what' is assigned the value
|
|
! contained in 'val'.
|
|
! For the multilevel preconditioners, the levels are numbered in increasing
|
|
! order starting from the finest one, i.e. level 1 is the finest level.
|
|
!
|
|
! To set character and real parameters, see mld_dprecsetc and mld_dprecsetr,
|
|
! respectively.
|
|
!
|
|
!
|
|
! Arguments:
|
|
! p - type(mld_dprec_type), input/output.
|
|
! The preconditioner data structure.
|
|
! what - integer, input.
|
|
! The number identifying the parameter to be set.
|
|
! A mnemonic constant has been associated to each of these
|
|
! numbers, as reported in the MLD2P4 User's and Reference Guide.
|
|
! val - integer, input.
|
|
! The value of the parameter to be set. The list of allowed
|
|
! values is reported in the MLD2P4 User's and Reference Guide.
|
|
! info - integer, output.
|
|
! Error code.
|
|
! ilev - integer, optional, input.
|
|
! For the multilevel preconditioner, the level at which the
|
|
! preconditioner parameter has to be set.
|
|
! If nlev is not present, the parameter identified by 'what'
|
|
! is set at all the appropriate levels.
|
|
!
|
|
! NOTE: currently, the use of the argument ilev is not "safe" and is reserved to
|
|
! MLD2P4 developers. Indeed, by using ilev it is possible to set different values
|
|
! of the same parameter at different levels 1,...,nlev-1, even in cases where
|
|
! the parameter must have the same value at all the levels but the coarsest one.
|
|
! For this reason, the interface mld_precset to this routine has been built in
|
|
! such a way that ilev is not visible to the user (see mld_prec_mod.f90).
|
|
!
|
|
subroutine mld_dprecseti(p,what,val,info,ilev)
|
|
|
|
use psb_sparse_mod
|
|
use mld_prec_mod, mld_protect_name => mld_dprecseti
|
|
use mld_d_jac_smoother
|
|
use mld_d_as_smoother
|
|
use mld_d_diag_solver
|
|
use mld_d_ilu_solver
|
|
|
|
|
|
implicit none
|
|
|
|
! Arguments
|
|
type(mld_dprec_type), intent(inout) :: p
|
|
integer, intent(in) :: what
|
|
integer, intent(in) :: val
|
|
integer, intent(out) :: info
|
|
integer, optional, intent(in) :: ilev
|
|
|
|
! Local variables
|
|
integer :: ilev_, nlev_
|
|
character(len=*), parameter :: name='mld_precseti'
|
|
|
|
info = psb_success_
|
|
|
|
if (.not.allocated(p%precv)) then
|
|
info = 3111
|
|
write(0,*) name,': Error: uninitialized preconditioner,',&
|
|
&' should call MLD_PRECINIT'
|
|
return
|
|
endif
|
|
nlev_ = size(p%precv)
|
|
|
|
if (present(ilev)) then
|
|
ilev_ = ilev
|
|
else
|
|
ilev_ = 1
|
|
end if
|
|
|
|
if ((ilev_<1).or.(ilev_ > nlev_)) then
|
|
info = -1
|
|
write(0,*) name,': Error: invalid ILEV/NLEV combination',ilev_, nlev_
|
|
return
|
|
endif
|
|
|
|
!
|
|
! Set preconditioner parameters at level ilev.
|
|
!
|
|
if (present(ilev)) then
|
|
|
|
if (ilev_ == 1) then
|
|
!
|
|
! Rules for fine level are slightly different.
|
|
!
|
|
select case(what)
|
|
case(mld_smoother_type_)
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
case(mld_smoother_sweeps_)
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
& mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
& mld_smoother_pos_,mld_aggr_omega_alg_,mld_aggr_eig_,&
|
|
& mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_)
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
case default
|
|
write(0,*) name,': Error: invalid WHAT'
|
|
info = -2
|
|
end select
|
|
|
|
else if (ilev_ > 1) then
|
|
select case(what)
|
|
case(mld_smoother_type_)
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
case(mld_smoother_sweeps_)
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
& mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
& mld_smoother_pos_,mld_aggr_omega_alg_,mld_aggr_eig_,&
|
|
& mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_)
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
case(mld_coarse_mat_)
|
|
if (ilev_ /= nlev_ .and. val /= mld_distr_mat_) then
|
|
write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
info = -2
|
|
return
|
|
end if
|
|
p%precv(ilev_)%iprcparm(mld_coarse_mat_) = val
|
|
case(mld_coarse_subsolve_)
|
|
if (ilev_ /= nlev_) then
|
|
write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
info = -2
|
|
return
|
|
end if
|
|
p%precv(ilev_)%iprcparm(mld_sub_solve_) = val
|
|
case(mld_coarse_solve_)
|
|
if (ilev_ /= nlev_) then
|
|
write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
info = -2
|
|
return
|
|
end if
|
|
|
|
if (nlev_ > 1) then
|
|
p%precv(nlev_)%iprcparm(mld_coarse_solve_) = val
|
|
p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_bjac_
|
|
p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_distr_mat_
|
|
select case (val)
|
|
case(mld_umf_, mld_slu_)
|
|
p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_repl_mat_
|
|
p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
case(mld_sludist_)
|
|
p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
end select
|
|
endif
|
|
case(mld_coarse_sweeps_)
|
|
if (ilev_ /= nlev_) then
|
|
write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
info = -2
|
|
return
|
|
end if
|
|
p%precv(ilev_)%prec%iprcparm(mld_smoother_sweeps_) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
case(mld_coarse_fillin_)
|
|
if (ilev_ /= nlev_) then
|
|
write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
info = -2
|
|
return
|
|
end if
|
|
p%precv(ilev_)%prec%iprcparm(mld_sub_fillin_) = val
|
|
case default
|
|
write(0,*) name,': Error: invalid WHAT'
|
|
info = -2
|
|
end select
|
|
|
|
endif
|
|
|
|
else if (.not.present(ilev)) then
|
|
!
|
|
! ilev not specified: set preconditioner parameters at all the appropriate
|
|
! levels
|
|
!
|
|
select case(what)
|
|
case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
& mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
do ilev_=1,max(1,nlev_-1)
|
|
if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
end do
|
|
case(mld_smoother_sweeps_)
|
|
do ilev_=1,max(1,nlev_-1)
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
end do
|
|
|
|
case(mld_smoother_type_)
|
|
do ilev_=1,nlev_
|
|
if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
p%precv(ilev_)%prec%iprcparm(what) = val
|
|
end do
|
|
case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
& mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_,&
|
|
& mld_smoother_pos_,mld_aggr_omega_alg_,&
|
|
& mld_aggr_eig_,mld_aggr_filter_)
|
|
do ilev_=1,nlev_
|
|
if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
p%precv(ilev_)%iprcparm(what) = val
|
|
end do
|
|
|
|
case(mld_coarse_mat_)
|
|
if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
write(0,*) name,&
|
|
& ': Error: uninitialized preconditioner component,',&
|
|
& ' should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
if (nlev_ > 1) p%precv(nlev_)%iprcparm(mld_coarse_mat_) = val
|
|
case(mld_coarse_solve_)
|
|
if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
|
|
if (nlev_ > 1) then
|
|
p%precv(nlev_)%iprcparm(mld_coarse_solve_) = val
|
|
p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_bjac_
|
|
p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_distr_mat_
|
|
select case (val)
|
|
case(mld_umf_, mld_slu_)
|
|
p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_repl_mat_
|
|
p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
case(mld_sludist_)
|
|
p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
case(mld_jac_)
|
|
p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_jac_
|
|
p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = mld_diag_scale_
|
|
end select
|
|
endif
|
|
case(mld_coarse_subsolve_)
|
|
if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
end if
|
|
if (nlev_ > 1) p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
|
|
case(mld_coarse_sweeps_)
|
|
if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
if (nlev_ > 1) then
|
|
p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_) = val
|
|
p%precv(nlev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
p%precv(nlev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_post_) = val
|
|
end if
|
|
case(mld_coarse_fillin_)
|
|
if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
if (nlev_ > 1) p%precv(nlev_)%prec%iprcparm(mld_sub_fillin_) = val
|
|
case default
|
|
write(0,*) name,': Error: invalid WHAT'
|
|
info = -2
|
|
end select
|
|
|
|
endif
|
|
|
|
end subroutine mld_dprecseti
|
|
|
|
subroutine mld_dprecsetsm(p,what,val,info,ilev)
|
|
|
|
use psb_sparse_mod
|
|
use mld_prec_mod, mld_protect_name => mld_dprecsetsm
|
|
use mld_d_jac_smoother
|
|
use mld_d_as_smoother
|
|
use mld_d_diag_solver
|
|
use mld_d_ilu_solver
|
|
|
|
|
|
implicit none
|
|
|
|
! Arguments
|
|
type(mld_dprec_type), intent(inout) :: p
|
|
integer, intent(in) :: what
|
|
class(mld_d_base_smoother_type), intent(in) :: val
|
|
integer, intent(out) :: info
|
|
integer, optional, intent(in) :: ilev
|
|
|
|
! Local variables
|
|
integer :: ilev_, nlev_
|
|
character(len=*), parameter :: name='mld_precseti'
|
|
|
|
info = psb_success_
|
|
|
|
if (.not.allocated(p%precv)) then
|
|
info = 3111
|
|
write(0,*) name,': Error: uninitialized preconditioner,',&
|
|
&' should call MLD_PRECINIT'
|
|
return
|
|
endif
|
|
nlev_ = size(p%precv)
|
|
|
|
if (present(ilev)) then
|
|
ilev_ = ilev
|
|
else
|
|
ilev_ = 1
|
|
end if
|
|
|
|
if ((ilev_<1).or.(ilev_ > nlev_)) then
|
|
info = -1
|
|
write(0,*) name,': Error: invalid ILEV/NLEV combination',ilev_, nlev_
|
|
return
|
|
endif
|
|
if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
info = 3111
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
return
|
|
endif
|
|
if (.not.allocated(p%precv(ilev_)%prec%iprcparm)) then
|
|
info = 3111
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
return
|
|
endif
|
|
|
|
!!$ !
|
|
!!$ ! Set preconditioner parameters at level ilev.
|
|
!!$ !
|
|
!!$ if (present(ilev)) then
|
|
!!$
|
|
!!$ if (ilev_ == 1) then
|
|
!!$ !
|
|
!!$ ! Rules for fine level are slightly different.
|
|
!!$ !
|
|
!!$ select case(what)
|
|
!!$ case(mld_smoother_type_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_smoother_sweeps_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
!!$ & mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
!!$ & mld_smoother_pos_,mld_aggr_omega_alg_,mld_aggr_eig_,&
|
|
!!$ & mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ case default
|
|
!!$ write(0,*) name,': Error: invalid WHAT'
|
|
!!$ info = -2
|
|
!!$ end select
|
|
!!$
|
|
!!$ else if (ilev_ > 1) then
|
|
!!$ select case(what)
|
|
!!$ case(mld_smoother_type_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_smoother_sweeps_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
!!$ & mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
!!$ & mld_smoother_pos_,mld_aggr_omega_alg_,mld_aggr_eig_,&
|
|
!!$ & mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ case(mld_coarse_mat_)
|
|
!!$ if (ilev_ /= nlev_ .and. val /= mld_distr_mat_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ p%precv(ilev_)%iprcparm(mld_coarse_mat_) = val
|
|
!!$ case(mld_coarse_subsolve_)
|
|
!!$ if (ilev_ /= nlev_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ p%precv(ilev_)%iprcparm(mld_sub_solve_) = val
|
|
!!$ case(mld_coarse_solve_)
|
|
!!$ if (ilev_ /= nlev_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$
|
|
!!$ if (nlev_ > 1) then
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_solve_) = val
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_bjac_
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_distr_mat_
|
|
!!$ select case (val)
|
|
!!$ case(mld_umf_, mld_slu_)
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_repl_mat_
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$ case(mld_sludist_)
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$ end select
|
|
!!$ endif
|
|
!!$ case(mld_coarse_sweeps_)
|
|
!!$ if (ilev_ /= nlev_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ p%precv(ilev_)%prec%iprcparm(mld_smoother_sweeps_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ case(mld_coarse_fillin_)
|
|
!!$ if (ilev_ /= nlev_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ p%precv(ilev_)%prec%iprcparm(mld_sub_fillin_) = val
|
|
!!$ case default
|
|
!!$ write(0,*) name,': Error: invalid WHAT'
|
|
!!$ info = -2
|
|
!!$ end select
|
|
!!$
|
|
!!$ endif
|
|
!!$
|
|
!!$ else if (.not.present(ilev)) then
|
|
!!$ !
|
|
!!$ ! ilev not specified: set preconditioner parameters at all the appropriate
|
|
!!$ ! levels
|
|
!!$ !
|
|
!!$ select case(what)
|
|
!!$ case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
!!$ & mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
!!$ do ilev_=1,max(1,nlev_-1)
|
|
!!$ if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ end do
|
|
!!$ case(mld_smoother_sweeps_)
|
|
!!$ do ilev_=1,max(1,nlev_-1)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ end do
|
|
!!$
|
|
!!$ case(mld_smoother_type_)
|
|
!!$ do ilev_=1,nlev_
|
|
!!$ if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ end do
|
|
!!$ case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
!!$ & mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_,&
|
|
!!$ & mld_smoother_pos_,mld_aggr_omega_alg_,&
|
|
!!$ & mld_aggr_eig_,mld_aggr_filter_)
|
|
!!$ do ilev_=1,nlev_
|
|
!!$ if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ end do
|
|
!!$
|
|
!!$ case(mld_coarse_mat_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ & ': Error: uninitialized preconditioner component,',&
|
|
!!$ & ' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ if (nlev_ > 1) p%precv(nlev_)%iprcparm(mld_coarse_mat_) = val
|
|
!!$ case(mld_coarse_solve_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component,',&
|
|
!!$ &' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$
|
|
!!$ if (nlev_ > 1) then
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_solve_) = val
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_bjac_
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_distr_mat_
|
|
!!$ select case (val)
|
|
!!$ case(mld_umf_, mld_slu_)
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_repl_mat_
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$ case(mld_sludist_)
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$ case(mld_jac_)
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_jac_
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = mld_diag_scale_
|
|
!!$ end select
|
|
!!$ endif
|
|
!!$ case(mld_coarse_subsolve_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component,',&
|
|
!!$ &' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ if (nlev_ > 1) p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$
|
|
!!$ case(mld_coarse_sweeps_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component,',&
|
|
!!$ &' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ if (nlev_ > 1) then
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_) = val
|
|
!!$ p%precv(nlev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(nlev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ end if
|
|
!!$ case(mld_coarse_fillin_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component,',&
|
|
!!$ &' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ if (nlev_ > 1) p%precv(nlev_)%prec%iprcparm(mld_sub_fillin_) = val
|
|
!!$ case default
|
|
!!$ write(0,*) name,': Error: invalid WHAT'
|
|
!!$ info = -2
|
|
!!$ end select
|
|
!!$
|
|
!!$ endif
|
|
|
|
end subroutine mld_dprecsetsm
|
|
|
|
subroutine mld_dprecsetsv(p,what,val,info,ilev)
|
|
|
|
use psb_sparse_mod
|
|
use mld_prec_mod, mld_protect_name => mld_dprecsetsv
|
|
use mld_d_diag_solver
|
|
use mld_d_ilu_solver
|
|
|
|
|
|
implicit none
|
|
|
|
! Arguments
|
|
type(mld_dprec_type), intent(inout) :: p
|
|
integer, intent(in) :: what
|
|
class(mld_d_base_solver_type), intent(in) :: val
|
|
integer, intent(out) :: info
|
|
integer, optional, intent(in) :: ilev
|
|
|
|
! Local variables
|
|
integer :: ilev_, nlev_
|
|
character(len=*), parameter :: name='mld_precseti'
|
|
|
|
info = psb_success_
|
|
|
|
if (.not.allocated(p%precv)) then
|
|
info = 3111
|
|
write(0,*) name,': Error: uninitialized preconditioner,',&
|
|
&' should call MLD_PRECINIT'
|
|
return
|
|
endif
|
|
nlev_ = size(p%precv)
|
|
|
|
if (present(ilev)) then
|
|
ilev_ = ilev
|
|
else
|
|
ilev_ = 1
|
|
end if
|
|
|
|
if ((ilev_<1).or.(ilev_ > nlev_)) then
|
|
info = -1
|
|
write(0,*) name,': Error: invalid ILEV/NLEV combination',ilev_, nlev_
|
|
return
|
|
endif
|
|
if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
info = 3111
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
return
|
|
endif
|
|
if (.not.allocated(p%precv(ilev_)%prec%iprcparm)) then
|
|
info = 3111
|
|
write(0,*) name,&
|
|
&': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
return
|
|
endif
|
|
|
|
!
|
|
! Set preconditioner parameters at level ilev.
|
|
!
|
|
!!$ if (present(ilev)) then
|
|
!!$
|
|
!!$ if (ilev_ == 1) then
|
|
!!$ !
|
|
!!$ ! Rules for fine level are slightly different.
|
|
!!$ !
|
|
!!$ select case(what)
|
|
!!$ case(mld_smoother_type_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_smoother_sweeps_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
!!$ & mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
!!$ & mld_smoother_pos_,mld_aggr_omega_alg_,mld_aggr_eig_,&
|
|
!!$ & mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ case default
|
|
!!$ write(0,*) name,': Error: invalid WHAT'
|
|
!!$ info = -2
|
|
!!$ end select
|
|
!!$
|
|
!!$ else if (ilev_ > 1) then
|
|
!!$ select case(what)
|
|
!!$ case(mld_smoother_type_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_smoother_sweeps_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
!!$ & mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
!!$ & mld_smoother_pos_,mld_aggr_omega_alg_,mld_aggr_eig_,&
|
|
!!$ & mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ case(mld_coarse_mat_)
|
|
!!$ if (ilev_ /= nlev_ .and. val /= mld_distr_mat_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ p%precv(ilev_)%iprcparm(mld_coarse_mat_) = val
|
|
!!$ case(mld_coarse_subsolve_)
|
|
!!$ if (ilev_ /= nlev_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ p%precv(ilev_)%iprcparm(mld_sub_solve_) = val
|
|
!!$ case(mld_coarse_solve_)
|
|
!!$ if (ilev_ /= nlev_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$
|
|
!!$ if (nlev_ > 1) then
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_solve_) = val
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_bjac_
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_distr_mat_
|
|
!!$ select case (val)
|
|
!!$ case(mld_umf_, mld_slu_)
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_repl_mat_
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$ case(mld_sludist_)
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$ end select
|
|
!!$ endif
|
|
!!$ case(mld_coarse_sweeps_)
|
|
!!$ if (ilev_ /= nlev_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ p%precv(ilev_)%prec%iprcparm(mld_smoother_sweeps_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ case(mld_coarse_fillin_)
|
|
!!$ if (ilev_ /= nlev_) then
|
|
!!$ write(0,*) name,': Error: Inconsistent specification of WHAT vs. ILEV'
|
|
!!$ info = -2
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ p%precv(ilev_)%prec%iprcparm(mld_sub_fillin_) = val
|
|
!!$ case default
|
|
!!$ write(0,*) name,': Error: invalid WHAT'
|
|
!!$ info = -2
|
|
!!$ end select
|
|
!!$
|
|
!!$ endif
|
|
!!$
|
|
!!$ else if (.not.present(ilev)) then
|
|
!!$ !
|
|
!!$ ! ilev not specified: set preconditioner parameters at all the appropriate
|
|
!!$ ! levels
|
|
!!$ !
|
|
!!$ select case(what)
|
|
!!$ case(mld_sub_solve_,mld_sub_restr_,mld_sub_prol_,&
|
|
!!$ & mld_sub_ren_,mld_sub_ovr_,mld_sub_fillin_)
|
|
!!$ do ilev_=1,max(1,nlev_-1)
|
|
!!$ if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ end do
|
|
!!$ case(mld_smoother_sweeps_)
|
|
!!$ do ilev_=1,max(1,nlev_-1)
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(ilev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ end do
|
|
!!$
|
|
!!$ case(mld_smoother_type_)
|
|
!!$ do ilev_=1,nlev_
|
|
!!$ if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ p%precv(ilev_)%prec%iprcparm(what) = val
|
|
!!$ end do
|
|
!!$ case(mld_ml_type_,mld_aggr_alg_,mld_aggr_kind_,&
|
|
!!$ & mld_smoother_sweeps_pre_,mld_smoother_sweeps_post_,&
|
|
!!$ & mld_smoother_pos_,mld_aggr_omega_alg_,&
|
|
!!$ & mld_aggr_eig_,mld_aggr_filter_)
|
|
!!$ do ilev_=1,nlev_
|
|
!!$ if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component, should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ p%precv(ilev_)%iprcparm(what) = val
|
|
!!$ end do
|
|
!!$
|
|
!!$ case(mld_coarse_mat_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ & ': Error: uninitialized preconditioner component,',&
|
|
!!$ & ' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ if (nlev_ > 1) p%precv(nlev_)%iprcparm(mld_coarse_mat_) = val
|
|
!!$ case(mld_coarse_solve_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component,',&
|
|
!!$ &' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$
|
|
!!$ if (nlev_ > 1) then
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_solve_) = val
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_bjac_
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_distr_mat_
|
|
!!$ select case (val)
|
|
!!$ case(mld_umf_, mld_slu_)
|
|
!!$ p%precv(nlev_)%iprcparm(mld_coarse_mat_) = mld_repl_mat_
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$ case(mld_sludist_)
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$ case(mld_jac_)
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_type_) = mld_jac_
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = mld_diag_scale_
|
|
!!$ end select
|
|
!!$ endif
|
|
!!$ case(mld_coarse_subsolve_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component,',&
|
|
!!$ &' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ end if
|
|
!!$ if (nlev_ > 1) p%precv(nlev_)%prec%iprcparm(mld_sub_solve_) = val
|
|
!!$
|
|
!!$ case(mld_coarse_sweeps_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component,',&
|
|
!!$ &' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ if (nlev_ > 1) then
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_) = val
|
|
!!$ p%precv(nlev_)%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(nlev_)%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_pre_) = val
|
|
!!$ p%precv(nlev_)%prec%iprcparm(mld_smoother_sweeps_post_) = val
|
|
!!$ end if
|
|
!!$ case(mld_coarse_fillin_)
|
|
!!$ if (.not.allocated(p%precv(nlev_)%iprcparm)) then
|
|
!!$ write(0,*) name,&
|
|
!!$ &': Error: uninitialized preconditioner component,',&
|
|
!!$ &' should call MLD_PRECINIT'
|
|
!!$ info = -1
|
|
!!$ return
|
|
!!$ endif
|
|
!!$ if (nlev_ > 1) p%precv(nlev_)%prec%iprcparm(mld_sub_fillin_) = val
|
|
!!$ case default
|
|
!!$ write(0,*) name,': Error: invalid WHAT'
|
|
!!$ info = -2
|
|
!!$ end select
|
|
!!$
|
|
!!$ endif
|
|
|
|
end subroutine mld_dprecsetsv
|
|
|
|
!
|
|
! Subroutine: mld_dprecsetc
|
|
! Version: real
|
|
!
|
|
! This routine sets the character parameters defining the preconditioner. More
|
|
! precisely, the character parameter identified by 'what' is assigned the value
|
|
! contained in 'val'.
|
|
! For the multilevel preconditioners, the levels are numbered in increasing
|
|
! order starting from the finest one, i.e. level 1 is the finest level.
|
|
!
|
|
! To set integer and real parameters, see mld_dprecseti and mld_dprecsetr,
|
|
! respectively.
|
|
!
|
|
!
|
|
! Arguments:
|
|
! p - type(mld_dprec_type), input/output.
|
|
! The preconditioner data structure.
|
|
! what - integer, input.
|
|
! The number identifying the parameter to be set.
|
|
! A mnemonic constant has been associated to each of these
|
|
! numbers, as reported in the MLD2P4 User's and Reference Guide.
|
|
! string - character(len=*), input.
|
|
! The value of the parameter to be set. The list of allowed
|
|
! values is reported in the MLD2P4 User's and Reference Guide.
|
|
! info - integer, output.
|
|
! Error code.
|
|
! ilev - integer, optional, input.
|
|
! For the multilevel preconditioner, the level at which the
|
|
! preconditioner parameter has to be set.
|
|
! If nlev is not present, the parameter identified by 'what'
|
|
! is set at all the appropriate levels.
|
|
!
|
|
! NOTE: currently, the use of the argument ilev is not "safe" and is reserved to
|
|
! MLD2P4 developers. Indeed, by using ilev it is possible to set different values
|
|
! of the same parameter at different levels 1,...,nlev-1, even in cases where
|
|
! the parameter must have the same value at all the levels but the coarsest one.
|
|
! For this reason, the interface mld_precset to this routine has been built in
|
|
! such a way that ilev is not visible to the user (see mld_prec_mod.f90).
|
|
!
|
|
subroutine mld_dprecsetc(p,what,string,info,ilev)
|
|
|
|
use psb_sparse_mod
|
|
use mld_prec_mod, mld_protect_name => mld_dprecsetc
|
|
|
|
implicit none
|
|
|
|
! Arguments
|
|
type(mld_dprec_type), intent(inout) :: p
|
|
integer, intent(in) :: what
|
|
character(len=*), intent(in) :: string
|
|
integer, intent(out) :: info
|
|
integer, optional, intent(in) :: ilev
|
|
|
|
! Local variables
|
|
integer :: ilev_, nlev_,val
|
|
character(len=*), parameter :: name='mld_precsetc'
|
|
|
|
info = psb_success_
|
|
|
|
if (.not.allocated(p%precv)) then
|
|
info = 3111
|
|
return
|
|
endif
|
|
nlev_ = size(p%precv)
|
|
|
|
if (present(ilev)) then
|
|
ilev_ = ilev
|
|
else
|
|
ilev_ = 1
|
|
end if
|
|
|
|
if ((ilev_<1).or.(ilev_ > nlev_)) then
|
|
write(0,*) name,': Error: invalid ILEV/NLEV combination',ilev_, nlev_
|
|
info = -1
|
|
return
|
|
endif
|
|
if (.not.allocated(p%precv(ilev_)%iprcparm)) then
|
|
write(0,*) name,': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
info = 3111
|
|
return
|
|
endif
|
|
|
|
|
|
call mld_stringval(string,val,info)
|
|
if (info == psb_success_) call mld_inner_precset(p,what,val,info,ilev=ilev)
|
|
|
|
|
|
end subroutine mld_dprecsetc
|
|
|
|
|
|
!
|
|
! Subroutine: mld_dprecsetr
|
|
! Version: real
|
|
!
|
|
! This routine sets the real parameters defining the preconditioner. More
|
|
! precisely, the real parameter identified by 'what' is assigned the value
|
|
! contained in 'val'.
|
|
! For the multilevel preconditioners, the levels are numbered in increasing
|
|
! order starting from the finest one, i.e. level 1 is the finest level.
|
|
!
|
|
! To set integer and character parameters, see mld_dprecseti and mld_dprecsetc,
|
|
! respectively.
|
|
!
|
|
! Arguments:
|
|
! p - type(mld_dprec_type), input/output.
|
|
! The preconditioner data structure.
|
|
! what - integer, input.
|
|
! The number identifying the parameter to be set.
|
|
! A mnemonic constant has been associated to each of these
|
|
! numbers, as reported in the MLD2P4 User's and Reference Guide.
|
|
! val - real(psb_dpk_), input.
|
|
! The value of the parameter to be set. The list of allowed
|
|
! values is reported in the MLD2P4 User's and Reference Guide.
|
|
! info - integer, output.
|
|
! Error code.
|
|
! ilev - integer, optional, input.
|
|
! For the multilevel preconditioner, the level at which the
|
|
! preconditioner parameter has to be set.
|
|
! If nlev is not present, the parameter identified by 'what'
|
|
! is set at all the appropriate levels.
|
|
!
|
|
! NOTE: currently, the use of the argument ilev is not "safe" and is reserved to
|
|
! MLD2P4 developers. Indeed, by using ilev it is possible to set different values
|
|
! of the same parameter at different levels 1,...,nlev-1, even in cases where
|
|
! the parameter must have the same value at all the levels but the coarsest one.
|
|
! For this reason, the interface mld_precset to this routine has been built in
|
|
! such a way that ilev is not visible to the user (see mld_prec_mod.f90).
|
|
!
|
|
subroutine mld_dprecsetr(p,what,val,info,ilev)
|
|
|
|
use psb_sparse_mod
|
|
use mld_prec_mod, mld_protect_name => mld_dprecsetr
|
|
|
|
implicit none
|
|
|
|
! Arguments
|
|
type(mld_dprec_type), intent(inout) :: p
|
|
integer, intent(in) :: what
|
|
real(psb_dpk_), intent(in) :: val
|
|
integer, intent(out) :: info
|
|
integer, optional, intent(in) :: ilev
|
|
|
|
! Local variables
|
|
integer :: ilev_,nlev_
|
|
character(len=*), parameter :: name='mld_precsetr'
|
|
|
|
info = psb_success_
|
|
|
|
if (present(ilev)) then
|
|
ilev_ = ilev
|
|
else
|
|
ilev_ = 1
|
|
end if
|
|
|
|
if (.not.allocated(p%precv)) then
|
|
write(0,*) name,': Error: uninitialized preconditioner,',&
|
|
&' should call MLD_PRECINIT'
|
|
info = 3111
|
|
return
|
|
endif
|
|
nlev_ = size(p%precv)
|
|
|
|
if ((ilev_<1).or.(ilev_ > nlev_)) then
|
|
write(0,*) name,': Error: invalid ILEV/NLEV combination',&
|
|
& ilev_, nlev_
|
|
info = -1
|
|
return
|
|
endif
|
|
if (.not.allocated(p%precv(ilev_)%rprcparm)) then
|
|
write(0,*) name,': Error: uninitialized preconditioner component,',&
|
|
&' should call MLD_PRECINIT'
|
|
info = 3111
|
|
return
|
|
endif
|
|
|
|
!
|
|
! Set preconditioner parameters at level ilev.
|
|
!
|
|
if (present(ilev)) then
|
|
|
|
if (ilev_ == 1) then
|
|
!
|
|
! Rules for fine level are slightly different.
|
|
!
|
|
select case(what)
|
|
case(mld_sub_iluthrs_)
|
|
p%precv(ilev_)%prec%rprcparm(what) = val
|
|
case default
|
|
write(0,*) name,': Error: invalid WHAT'
|
|
info = -2
|
|
end select
|
|
|
|
else if (ilev_ > 1) then
|
|
select case(what)
|
|
case(mld_sub_iluthrs_)
|
|
p%precv(ilev_)%prec%rprcparm(what) = val
|
|
case(mld_aggr_omega_val_,mld_aggr_thresh_)
|
|
p%precv(ilev_)%rprcparm(what) = val
|
|
case default
|
|
write(0,*) name,': Error: invalid WHAT'
|
|
info = -2
|
|
end select
|
|
endif
|
|
|
|
else if (.not.present(ilev)) then
|
|
!
|
|
! ilev not specified: set preconditioner parameters at all the appropriate levels
|
|
!
|
|
|
|
select case(what)
|
|
case(mld_sub_iluthrs_)
|
|
do ilev_=1,nlev_
|
|
if (.not.allocated(p%precv(ilev_)%rprcparm)) then
|
|
write(0,*) name,': Error: uninitialized preconditioner ',&
|
|
& 'component, should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
p%precv(ilev_)%prec%rprcparm(what) = val
|
|
end do
|
|
case(mld_coarse_iluthrs_)
|
|
ilev_=nlev_
|
|
if (.not.allocated(p%precv(ilev_)%rprcparm)) then
|
|
write(0,*) name,': Error: uninitialized preconditioner ',&
|
|
& 'component, should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
p%precv(ilev_)%prec%rprcparm(mld_sub_iluthrs_) = val
|
|
case(mld_aggr_omega_val_)
|
|
do ilev_=2,nlev_
|
|
if (.not.allocated(p%precv(ilev_)%rprcparm)) then
|
|
write(0,*) name,': Error: uninitialized preconditioner',&
|
|
& ' component, should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
p%precv(ilev_)%rprcparm(what) = val
|
|
end do
|
|
case(mld_aggr_thresh_)
|
|
do ilev_=2,nlev_
|
|
if (.not.allocated(p%precv(ilev_)%rprcparm)) then
|
|
write(0,*) name,': Error: uninitialized preconditioner',&
|
|
&' component, should call MLD_PRECINIT'
|
|
info = -1
|
|
return
|
|
endif
|
|
p%precv(ilev_)%rprcparm(what) = val
|
|
end do
|
|
case default
|
|
write(0,*) name,': Error: invalid WHAT'
|
|
info = -2
|
|
end select
|
|
|
|
endif
|
|
|
|
end subroutine mld_dprecsetr
|