Cleanup unused files/interfaces. Disable min_energy for the time being.
parent
7acf594798
commit
5c9c00c7b8
@ -1,390 +0,0 @@
|
|||||||
!
|
|
||||||
!
|
|
||||||
! MLD2P4 Extensions
|
|
||||||
!
|
|
||||||
! (C) Copyright 2019
|
|
||||||
!
|
|
||||||
! Salvatore Filippone Cranfield University
|
|
||||||
! Pasqua D'Ambra IAC-CNR, Naples, IT
|
|
||||||
!
|
|
||||||
! 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_daggrmat_nosmth_bld.F90
|
|
||||||
!
|
|
||||||
!
|
|
||||||
subroutine mld_c_spmm_bld_inner(a_csr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,desc_ac,coo_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_c_inner_mod
|
|
||||||
use mld_c_base_aggregator_mod, mld_protect_name => mld_c_spmm_bld_inner
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_c_csr_sparse_mat), intent(inout) :: a_csr
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: nlaggr(:)
|
|
||||||
type(mld_sml_parms), intent(inout) :: parms
|
|
||||||
type(psb_lc_coo_sparse_mat), intent(inout) :: coo_prol, coo_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
type(psb_lcspmat_type), intent(out) :: ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_ipk_) :: err_act
|
|
||||||
integer(psb_ipk_) :: ictxt,np,me, icomm, ndx, minfo
|
|
||||||
character(len=40) :: name
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
type(psb_lc_coo_sparse_mat) :: ac_coo, tmpcoo
|
|
||||||
type(psb_c_csr_sparse_mat) :: acsr3, csr_prol, ac_csr, csr_restr
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, naggr
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, nrl, nzl, ip, &
|
|
||||||
& nzt, naggrm1, naggrp1, i, k
|
|
||||||
integer(psb_lpk_) :: nrsave, ncsave, nzsave, nza
|
|
||||||
logical, parameter :: do_timings=.false., oldstyle=.false., debug=.false.
|
|
||||||
integer(psb_ipk_), save :: idx_spspmm=-1
|
|
||||||
|
|
||||||
name='mld_spmm_bld_inner'
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
icomm = desc_a%get_mpic()
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
if ((do_timings).and.(idx_spspmm==-1)) &
|
|
||||||
& idx_spspmm = psb_get_timer_idx("SPMM_BLD: par_spspmm")
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
!write(0,*)me,' ',name,' input sizes',nlaggr(:),':',naggr
|
|
||||||
|
|
||||||
!
|
|
||||||
! COO_PROL should arrive here with local numbering
|
|
||||||
!
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' Size check on entry New: ',&
|
|
||||||
& coo_prol%get_fmt(),coo_prol%get_nrows(),coo_prol%get_ncols(),coo_prol%get_nzeros(),&
|
|
||||||
& nrow,ntaggr,naggr
|
|
||||||
|
|
||||||
call coo_prol%cp_to_ifmt(csr_prol,info)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product AxPROL ',&
|
|
||||||
& a_csr%get_nrows(),a_csr%get_ncols(), csr_prol%get_nrows(), &
|
|
||||||
& desc_a%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols()
|
|
||||||
if (debug) flush(0)
|
|
||||||
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(a_csr,desc_a,csr_prol,acsr3,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Done AxPROL ',&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols(), acsr3%get_nzeros(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_ac%get_local_cols()
|
|
||||||
|
|
||||||
!
|
|
||||||
! Ok first product done.
|
|
||||||
!
|
|
||||||
! Remember that RESTR must be built from PROL after halo extension,
|
|
||||||
! which is done above in psb_par_spspmm
|
|
||||||
if (debug) write(0,*)me,' ',name,' No inp_restr, transposing prol ',&
|
|
||||||
& csr_prol%get_nrows(),csr_prol%get_ncols(),csr_prol%get_nzeros()
|
|
||||||
call csr_prol%mv_to_lcoo(coo_restr,info)
|
|
||||||
!!$ write(0,*)me,' ',name,' new into transposition ',coo_restr%get_nrows(),&
|
|
||||||
!!$ & coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 1 (before transp) on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
call coo_restr%transp()
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
nrl = desc_ac%get_local_rows()
|
|
||||||
i=0
|
|
||||||
!
|
|
||||||
! Only keep local rows
|
|
||||||
!
|
|
||||||
do k=1, nzl
|
|
||||||
if ((1 <= coo_restr%ia(k)) .and.(coo_restr%ia(k) <= nrl)) then
|
|
||||||
i = i+1
|
|
||||||
coo_restr%val(i) = coo_restr%val(k)
|
|
||||||
coo_restr%ia(i) = coo_restr%ia(k)
|
|
||||||
coo_restr%ja(i) = coo_restr%ja(k)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
call coo_restr%set_nzeros(i)
|
|
||||||
call coo_restr%fix(info)
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 2 on coo_restr:',coo_restr)
|
|
||||||
call csr_restr%cp_from_lcoo(coo_restr,info)
|
|
||||||
|
|
||||||
!!$ write(0,*)me,' ',name,' after transposition ',coo_restr%get_nrows(),coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
|
|
||||||
if (info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spcnv coo_restr')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'starting sphalo/ rwxtd'
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product RESTRxAP ',&
|
|
||||||
& csr_restr%get_nrows(),csr_restr%get_ncols(), &
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols()
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(csr_restr,desc_a,acsr3,ac_csr,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
call acsr3%free()
|
|
||||||
|
|
||||||
call psb_cdasb(desc_ac,info)
|
|
||||||
|
|
||||||
call ac_csr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call ac_csr%set_ncols(desc_ac%get_local_cols())
|
|
||||||
call ac%mv_from(ac_csr)
|
|
||||||
call ac%set_asb()
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' After mv_from',psb_get_errstatus()
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' ',ac%get_fmt(),ac%get_nrows(),&
|
|
||||||
& ac%get_ncols(),ac%get_nzeros(),naggr,ntaggr
|
|
||||||
|
|
||||||
call coo_prol%set_ncols(desc_ac%get_local_cols())
|
|
||||||
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 3 on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done spmm_bld_inner '
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 call psb_error_handler(err_act)
|
|
||||||
|
|
||||||
return
|
|
||||||
contains
|
|
||||||
subroutine check_coo(me,string,coo)
|
|
||||||
implicit none
|
|
||||||
integer(psb_ipk_) :: me
|
|
||||||
type(psb_lc_coo_sparse_mat) :: coo
|
|
||||||
character(len=*) :: string
|
|
||||||
integer(psb_lpk_) :: nr,nc,nz
|
|
||||||
nr = coo%get_nrows()
|
|
||||||
nc = coo%get_ncols()
|
|
||||||
nz = coo%get_nzeros()
|
|
||||||
write(0,*) me,string,nr,nc,&
|
|
||||||
& minval(coo%ia(1:nz)),maxval(coo%ia(1:nz)),&
|
|
||||||
& minval(coo%ja(1:nz)),maxval(coo%ja(1:nz))
|
|
||||||
|
|
||||||
end subroutine check_coo
|
|
||||||
|
|
||||||
end subroutine mld_c_spmm_bld_inner
|
|
||||||
|
|
||||||
subroutine mld_lc_spmm_bld_inner(a_csr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,desc_ac,coo_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_c_inner_mod
|
|
||||||
use mld_c_base_aggregator_mod, mld_protect_name => mld_lc_spmm_bld_inner
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_lc_csr_sparse_mat), intent(inout) :: a_csr
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: nlaggr(:)
|
|
||||||
type(mld_sml_parms), intent(inout) :: parms
|
|
||||||
type(psb_lc_coo_sparse_mat), intent(inout) :: coo_prol, coo_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
type(psb_lcspmat_type), intent(out) :: ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_ipk_) :: err_act
|
|
||||||
integer(psb_ipk_) :: ictxt,np,me, icomm, ndx, minfo
|
|
||||||
character(len=40) :: name
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
type(psb_lc_coo_sparse_mat) :: ac_coo, tmpcoo
|
|
||||||
type(psb_lc_csr_sparse_mat) :: acsr3, csr_prol, ac_csr, csr_restr
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, naggr
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, nrl, nzl, ip, &
|
|
||||||
& nzt, naggrm1, naggrp1, i, k
|
|
||||||
integer(psb_lpk_) :: nrsave, ncsave, nzsave, nza
|
|
||||||
logical, parameter :: do_timings=.true., oldstyle=.false., debug=.false.
|
|
||||||
integer(psb_ipk_), save :: idx_spspmm=-1
|
|
||||||
|
|
||||||
name='mld_spmm_bld_inner'
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
icomm = desc_a%get_mpic()
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
if ((do_timings).and.(idx_spspmm==-1)) &
|
|
||||||
& idx_spspmm = psb_get_timer_idx("SPMM_BLD: par_spspmm")
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
!write(0,*)me,' ',name,' input sizes',nlaggr(:),':',naggr
|
|
||||||
|
|
||||||
!
|
|
||||||
! COO_PROL should arrive here with local numbering
|
|
||||||
!
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' Size check on entry New: ',&
|
|
||||||
& coo_prol%get_fmt(),coo_prol%get_nrows(),coo_prol%get_ncols(),coo_prol%get_nzeros(),&
|
|
||||||
& nrow,ntaggr,naggr
|
|
||||||
|
|
||||||
call coo_prol%cp_to_fmt(csr_prol,info)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product AxPROL ',&
|
|
||||||
& a_csr%get_nrows(),a_csr%get_ncols(), csr_prol%get_nrows(), &
|
|
||||||
& desc_a%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols()
|
|
||||||
if (debug) flush(0)
|
|
||||||
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(a_csr,desc_a,csr_prol,acsr3,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Done AxPROL ',&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols(), acsr3%get_nzeros(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_ac%get_local_cols()
|
|
||||||
|
|
||||||
!
|
|
||||||
! Ok first product done.
|
|
||||||
!
|
|
||||||
! Remember that RESTR must be built from PROL after halo extension,
|
|
||||||
! which is done above in psb_par_spspmm
|
|
||||||
if (debug) write(0,*)me,' ',name,' No inp_restr, transposing prol ',&
|
|
||||||
& csr_prol%get_nrows(),csr_prol%get_ncols(),csr_prol%get_nzeros()
|
|
||||||
call csr_prol%mv_to_coo(coo_restr,info)
|
|
||||||
!!$ write(0,*)me,' ',name,' new into transposition ',coo_restr%get_nrows(),&
|
|
||||||
!!$ & coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 1 (before transp) on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
call coo_restr%transp()
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
nrl = desc_ac%get_local_rows()
|
|
||||||
i=0
|
|
||||||
!
|
|
||||||
! Only keep local rows
|
|
||||||
!
|
|
||||||
do k=1, nzl
|
|
||||||
if ((1 <= coo_restr%ia(k)) .and.(coo_restr%ia(k) <= nrl)) then
|
|
||||||
i = i+1
|
|
||||||
coo_restr%val(i) = coo_restr%val(k)
|
|
||||||
coo_restr%ia(i) = coo_restr%ia(k)
|
|
||||||
coo_restr%ja(i) = coo_restr%ja(k)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
call coo_restr%set_nzeros(i)
|
|
||||||
call coo_restr%fix(info)
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 2 on coo_restr:',coo_restr)
|
|
||||||
call csr_restr%cp_from_coo(coo_restr,info)
|
|
||||||
|
|
||||||
!!$ write(0,*)me,' ',name,' after transposition ',coo_restr%get_nrows(),coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
|
|
||||||
if (info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spcnv coo_restr')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'starting sphalo/ rwxtd'
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product RESTRxAP ',&
|
|
||||||
& csr_restr%get_nrows(),csr_restr%get_ncols(), &
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols()
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(csr_restr,desc_a,acsr3,ac_csr,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
call acsr3%free()
|
|
||||||
|
|
||||||
call psb_cdasb(desc_ac,info)
|
|
||||||
|
|
||||||
call ac_csr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call ac_csr%set_ncols(desc_ac%get_local_cols())
|
|
||||||
call ac%mv_from(ac_csr)
|
|
||||||
call ac%set_asb()
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' After mv_from',psb_get_errstatus()
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' ',ac%get_fmt(),ac%get_nrows(),ac%get_ncols(),ac%get_nzeros(),naggr,ntaggr
|
|
||||||
! write(0,*) me,' ',trim(name),' Final AC newstyle ',ac%get_fmt(),ac%get_nrows(),ac%get_ncols(),ac%get_nzeros()
|
|
||||||
|
|
||||||
call coo_prol%set_ncols(desc_ac%get_local_cols())
|
|
||||||
!call coo_restr%mv_from_ifmt(csr_restr,info)
|
|
||||||
!!$ call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
!!$ call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 3 on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done spmm_bld_inner '
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 call psb_error_handler(err_act)
|
|
||||||
|
|
||||||
return
|
|
||||||
|
|
||||||
contains
|
|
||||||
subroutine check_coo(me,string,coo)
|
|
||||||
implicit none
|
|
||||||
integer(psb_ipk_) :: me
|
|
||||||
type(psb_lc_coo_sparse_mat) :: coo
|
|
||||||
character(len=*) :: string
|
|
||||||
integer(psb_lpk_) :: nr,nc,nz
|
|
||||||
nr = coo%get_nrows()
|
|
||||||
nc = coo%get_ncols()
|
|
||||||
nz = coo%get_nzeros()
|
|
||||||
write(0,*) me,string,nr,nc,&
|
|
||||||
& minval(coo%ia(1:nz)),maxval(coo%ia(1:nz)),&
|
|
||||||
& minval(coo%ja(1:nz)),maxval(coo%ja(1:nz))
|
|
||||||
|
|
||||||
end subroutine check_coo
|
|
||||||
|
|
||||||
end subroutine mld_lc_spmm_bld_inner
|
|
@ -1,300 +0,0 @@
|
|||||||
!
|
|
||||||
!
|
|
||||||
! MLD2P4 version 2.2
|
|
||||||
! MultiLevel Domain Decomposition Parallel Preconditioners Package
|
|
||||||
! based on PSBLAS (Parallel Sparse BLAS version 3.5)
|
|
||||||
!
|
|
||||||
! (C) Copyright 2008-2018
|
|
||||||
!
|
|
||||||
! Salvatore Filippone
|
|
||||||
! Pasqua D'Ambra
|
|
||||||
! Daniela di Serafino
|
|
||||||
!
|
|
||||||
! 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_caggrmat_biz_bld.F90
|
|
||||||
!
|
|
||||||
! Subroutine: mld_caggrmat_biz_bld
|
|
||||||
! Version: complex
|
|
||||||
!
|
|
||||||
! This routine builds a coarse-level matrix A_C from a fine-level matrix A
|
|
||||||
! by using the Galerkin approach, i.e.
|
|
||||||
!
|
|
||||||
! A_C = P_C^T A P_C,
|
|
||||||
!
|
|
||||||
! where P_C is a prolongator from the coarse level to the fine one.
|
|
||||||
!
|
|
||||||
! This routine builds A_C according to a "bizarre" aggregation algorithm,
|
|
||||||
! using a "naive" prolongator proposed by the authors of MLD2P4. However, this
|
|
||||||
! prolongator still requires additional analysis and testing and its use is not
|
|
||||||
! recommended.
|
|
||||||
!
|
|
||||||
! The coarse-level matrix A_C is distributed among the parallel processes or
|
|
||||||
! replicated on each of them, according to the value of p%parms%coarse_mat,
|
|
||||||
! specified by the user through mld_cprecinit and mld_zprecset.
|
|
||||||
! On output from this routine the entries of AC, op_prol, op_restr
|
|
||||||
! are still in "global numbering" mode; this is fixed in the calling routine
|
|
||||||
! mld_c_lev_aggrmat_bld.
|
|
||||||
!
|
|
||||||
! Arguments:
|
|
||||||
! a - type(psb_cspmat_type), input.
|
|
||||||
! The sparse matrix structure containing the local part of
|
|
||||||
! the fine-level matrix.
|
|
||||||
! desc_a - type(psb_desc_type), input.
|
|
||||||
! The communication descriptor of the fine-level matrix.
|
|
||||||
! p - type(mld_c_onelev_type), input/output.
|
|
||||||
! The 'one-level' data structure that will contain the local
|
|
||||||
! part of the matrix to be built as well as the information
|
|
||||||
! concerning the prolongator and its transpose.
|
|
||||||
! ilaggr - integer, dimension(:), allocatable.
|
|
||||||
! The mapping between the row indices of the coarse-level
|
|
||||||
! matrix and the row indices of the fine-level matrix.
|
|
||||||
! ilaggr(i)=j means that node i in the adjacency graph
|
|
||||||
! of the fine-level matrix is mapped onto node j in the
|
|
||||||
! adjacency graph of the coarse-level matrix.
|
|
||||||
! nlaggr - integer, dimension(:), allocatable.
|
|
||||||
! nlaggr(i) contains the aggregates held by process i.
|
|
||||||
! info - integer, output.
|
|
||||||
! Error code.
|
|
||||||
!
|
|
||||||
subroutine mld_caggrmat_biz_bld(a,desc_a,ilaggr,nlaggr,parms,ac,op_prol,op_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_base_prec_type
|
|
||||||
use mld_c_inner_mod, mld_protect_name => mld_caggrmat_biz_bld
|
|
||||||
use mld_c_base_aggregator_mod
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_cspmat_type), intent(in) :: a
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: ilaggr(:), nlaggr(:)
|
|
||||||
type(mld_sml_parms), intent(inout) :: parms
|
|
||||||
type(psb_lcspmat_type), intent(inout) :: op_prol
|
|
||||||
type(psb_lcspmat_type), intent(out) :: ac,op_restr
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, ip, &
|
|
||||||
& naggr, nzl,naggrm1,naggrp1, i, j, k, jd, icolF, nrw
|
|
||||||
integer(psb_ipk_) :: inaggr, nzlp, inrow
|
|
||||||
integer(psb_ipk_) :: ictxt, np, me
|
|
||||||
character(len=20) :: name
|
|
||||||
type(psb_desc_type) :: tmp_desc
|
|
||||||
type(psb_c_coo_sparse_mat) :: icoo
|
|
||||||
type(psb_lc_coo_sparse_mat) :: coo_prol, coo_restr, tmpcoo
|
|
||||||
type(psb_lc_csr_sparse_mat) :: acsr1, acsrf, csr_prol, acsr
|
|
||||||
complex(psb_spk_), allocatable :: adiag(:)
|
|
||||||
real(psb_spk_), allocatable :: arwsum(:)
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
logical :: filter_mat
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, err_act
|
|
||||||
integer(psb_ipk_), parameter :: ncmax=16
|
|
||||||
real(psb_spk_) :: anorm, omega, tmp, dg, theta
|
|
||||||
logical, parameter :: debug_new=.false.
|
|
||||||
character(len=80) :: filename
|
|
||||||
|
|
||||||
name='mld_aggrmat_biz_bld'
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
if (psb_errstatus_fatal()) then
|
|
||||||
info = psb_err_internal_error_; goto 9999
|
|
||||||
end if
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
theta = parms%aggr_thresh
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
filter_mat = (parms%aggr_filter == mld_filter_mat_)
|
|
||||||
|
|
||||||
!
|
|
||||||
! naggr: number of local aggregates
|
|
||||||
! nrow: local rows.
|
|
||||||
!
|
|
||||||
|
|
||||||
! Get the diagonal D
|
|
||||||
adiag = a%get_diag(info)
|
|
||||||
if (info == psb_success_) &
|
|
||||||
& call psb_realloc(ncol,adiag,info)
|
|
||||||
if (info == psb_success_) &
|
|
||||||
& call psb_halo(adiag,desc_a,info)
|
|
||||||
if (info == psb_success_) call a%csclip(icoo,info,jmax=a%get_nrows())
|
|
||||||
call icoo%mv_to_lfmt(acsr,info)
|
|
||||||
call op_prol%mv_to(coo_prol)
|
|
||||||
|
|
||||||
if(info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='sp_getdiag')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& ' Initial copies done.'
|
|
||||||
|
|
||||||
call acsr%cp_to_fmt(acsrf,info)
|
|
||||||
|
|
||||||
|
|
||||||
if (filter_mat) then
|
|
||||||
!
|
|
||||||
! Build the filtered matrix Af from A
|
|
||||||
!
|
|
||||||
|
|
||||||
do i=1, nrow
|
|
||||||
tmp = czero
|
|
||||||
jd = -1
|
|
||||||
do j=acsrf%irp(i),acsrf%irp(i+1)-1
|
|
||||||
if (acsrf%ja(j) == i) jd = j
|
|
||||||
if (abs(acsrf%val(j)) < theta*sqrt(abs(adiag(i)*adiag(acsrf%ja(j))))) then
|
|
||||||
tmp=tmp+acsrf%val(j)
|
|
||||||
acsrf%val(j)=czero
|
|
||||||
endif
|
|
||||||
|
|
||||||
enddo
|
|
||||||
if (jd == -1) then
|
|
||||||
write(0,*) 'Wrong input: we need the diagonal!!!!', i
|
|
||||||
else
|
|
||||||
acsrf%val(jd)=acsrf%val(jd)-tmp
|
|
||||||
end if
|
|
||||||
enddo
|
|
||||||
! Take out zeroed terms
|
|
||||||
call acsrf%clean_zeros(info)
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
do i=1,size(adiag)
|
|
||||||
if (adiag(i) /= czero) then
|
|
||||||
adiag(i) = cone / adiag(i)
|
|
||||||
else
|
|
||||||
adiag(i) = cone
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
|
|
||||||
if (parms%aggr_omega_alg == mld_eig_est_) then
|
|
||||||
|
|
||||||
if (parms%aggr_eig == mld_max_norm_) then
|
|
||||||
allocate(arwsum(nrow))
|
|
||||||
call acsr%arwsum(arwsum)
|
|
||||||
anorm = maxval(abs(adiag(1:nrow)*arwsum(1:nrow)))
|
|
||||||
call psb_amx(ictxt,anorm)
|
|
||||||
omega = 4.d0/(3.d0*anorm)
|
|
||||||
parms%aggr_omega_val = omega
|
|
||||||
|
|
||||||
else
|
|
||||||
info = psb_err_internal_error_
|
|
||||||
call psb_errpush(info,name,a_err='invalid mld_aggr_eig_')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
else if (parms%aggr_omega_alg == mld_user_choice_) then
|
|
||||||
|
|
||||||
omega = parms%aggr_omega_val
|
|
||||||
|
|
||||||
else if (parms%aggr_omega_alg /= mld_user_choice_) then
|
|
||||||
info = psb_err_internal_error_
|
|
||||||
call psb_errpush(info,name,a_err='invalid mld_aggr_omega_alg_')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
call acsrf%scal(adiag,info)
|
|
||||||
if (info /= psb_success_) goto 9999
|
|
||||||
|
|
||||||
inaggr = naggr
|
|
||||||
call psb_cdall(ictxt,tmp_desc,info,nl=inaggr)
|
|
||||||
nzlp = coo_prol%get_nzeros()
|
|
||||||
call tmp_desc%indxmap%g2lip_ins(coo_prol%ja(1:nzlp),info)
|
|
||||||
call coo_prol%set_ncols(tmp_desc%get_local_cols())
|
|
||||||
call coo_prol%mv_to_fmt(csr_prol,info)
|
|
||||||
!
|
|
||||||
! Build the smoothed prolongator using either A or Af
|
|
||||||
! acsr1 = (I-w*D*A) Prol acsr1 = (I-w*D*Af) Prol
|
|
||||||
! This is always done through the variable acsrf which
|
|
||||||
! is a bit less readable, butsaves space and one extra matrix copy
|
|
||||||
!
|
|
||||||
call omega_smooth(omega,acsrf)
|
|
||||||
call psb_par_spspmm(acsrf,desc_a,csr_prol,acsr1,tmp_desc,info)
|
|
||||||
if(info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spspmm 1')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done SPSPMM 1'
|
|
||||||
nzl = acsr1%get_nzeros()
|
|
||||||
call acsr1%mv_to_coo(coo_prol,info)
|
|
||||||
|
|
||||||
call mld_spmm_bld_inner(acsr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,tmp_desc,coo_restr,info)
|
|
||||||
|
|
||||||
call op_prol%mv_from(coo_prol)
|
|
||||||
call op_restr%mv_from(coo_restr)
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done smooth_aggregate '
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 continue
|
|
||||||
call psb_errpush(info,name)
|
|
||||||
call psb_error_handler(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
contains
|
|
||||||
|
|
||||||
subroutine omega_smooth(omega,acsr)
|
|
||||||
implicit none
|
|
||||||
real(psb_spk_),intent(in) :: omega
|
|
||||||
type(psb_lc_csr_sparse_mat), intent(inout) :: acsr
|
|
||||||
!
|
|
||||||
integer(psb_lpk_) :: i,j
|
|
||||||
do i=1,acsr%get_nrows()
|
|
||||||
do j=acsr%irp(i),acsr%irp(i+1)-1
|
|
||||||
if (acsr%ja(j) == i) then
|
|
||||||
acsr%val(j) = cone - omega*acsr%val(j)
|
|
||||||
else
|
|
||||||
acsr%val(j) = - omega*acsr%val(j)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
end subroutine omega_smooth
|
|
||||||
|
|
||||||
end subroutine mld_caggrmat_biz_bld
|
|
@ -1,390 +0,0 @@
|
|||||||
!
|
|
||||||
!
|
|
||||||
! MLD2P4 Extensions
|
|
||||||
!
|
|
||||||
! (C) Copyright 2019
|
|
||||||
!
|
|
||||||
! Salvatore Filippone Cranfield University
|
|
||||||
! Pasqua D'Ambra IAC-CNR, Naples, IT
|
|
||||||
!
|
|
||||||
! 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_daggrmat_nosmth_bld.F90
|
|
||||||
!
|
|
||||||
!
|
|
||||||
subroutine mld_d_spmm_bld_inner(a_csr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,desc_ac,coo_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_d_inner_mod
|
|
||||||
use mld_d_base_aggregator_mod, mld_protect_name => mld_d_spmm_bld_inner
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_d_csr_sparse_mat), intent(inout) :: a_csr
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: nlaggr(:)
|
|
||||||
type(mld_dml_parms), intent(inout) :: parms
|
|
||||||
type(psb_ld_coo_sparse_mat), intent(inout) :: coo_prol, coo_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
type(psb_ldspmat_type), intent(out) :: ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_ipk_) :: err_act
|
|
||||||
integer(psb_ipk_) :: ictxt,np,me, icomm, ndx, minfo
|
|
||||||
character(len=40) :: name
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
type(psb_ld_coo_sparse_mat) :: ac_coo, tmpcoo
|
|
||||||
type(psb_d_csr_sparse_mat) :: acsr3, csr_prol, ac_csr, csr_restr
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, naggr
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, nrl, nzl, ip, &
|
|
||||||
& nzt, naggrm1, naggrp1, i, k
|
|
||||||
integer(psb_lpk_) :: nrsave, ncsave, nzsave, nza
|
|
||||||
logical, parameter :: do_timings=.false., oldstyle=.false., debug=.false.
|
|
||||||
integer(psb_ipk_), save :: idx_spspmm=-1
|
|
||||||
|
|
||||||
name='mld_spmm_bld_inner'
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
icomm = desc_a%get_mpic()
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
if ((do_timings).and.(idx_spspmm==-1)) &
|
|
||||||
& idx_spspmm = psb_get_timer_idx("SPMM_BLD: par_spspmm")
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
!write(0,*)me,' ',name,' input sizes',nlaggr(:),':',naggr
|
|
||||||
|
|
||||||
!
|
|
||||||
! COO_PROL should arrive here with local numbering
|
|
||||||
!
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' Size check on entry New: ',&
|
|
||||||
& coo_prol%get_fmt(),coo_prol%get_nrows(),coo_prol%get_ncols(),coo_prol%get_nzeros(),&
|
|
||||||
& nrow,ntaggr,naggr
|
|
||||||
|
|
||||||
call coo_prol%cp_to_ifmt(csr_prol,info)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product AxPROL ',&
|
|
||||||
& a_csr%get_nrows(),a_csr%get_ncols(), csr_prol%get_nrows(), &
|
|
||||||
& desc_a%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols()
|
|
||||||
if (debug) flush(0)
|
|
||||||
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(a_csr,desc_a,csr_prol,acsr3,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Done AxPROL ',&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols(), acsr3%get_nzeros(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_ac%get_local_cols()
|
|
||||||
|
|
||||||
!
|
|
||||||
! Ok first product done.
|
|
||||||
!
|
|
||||||
! Remember that RESTR must be built from PROL after halo extension,
|
|
||||||
! which is done above in psb_par_spspmm
|
|
||||||
if (debug) write(0,*)me,' ',name,' No inp_restr, transposing prol ',&
|
|
||||||
& csr_prol%get_nrows(),csr_prol%get_ncols(),csr_prol%get_nzeros()
|
|
||||||
call csr_prol%mv_to_lcoo(coo_restr,info)
|
|
||||||
!!$ write(0,*)me,' ',name,' new into transposition ',coo_restr%get_nrows(),&
|
|
||||||
!!$ & coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 1 (before transp) on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
call coo_restr%transp()
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
nrl = desc_ac%get_local_rows()
|
|
||||||
i=0
|
|
||||||
!
|
|
||||||
! Only keep local rows
|
|
||||||
!
|
|
||||||
do k=1, nzl
|
|
||||||
if ((1 <= coo_restr%ia(k)) .and.(coo_restr%ia(k) <= nrl)) then
|
|
||||||
i = i+1
|
|
||||||
coo_restr%val(i) = coo_restr%val(k)
|
|
||||||
coo_restr%ia(i) = coo_restr%ia(k)
|
|
||||||
coo_restr%ja(i) = coo_restr%ja(k)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
call coo_restr%set_nzeros(i)
|
|
||||||
call coo_restr%fix(info)
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 2 on coo_restr:',coo_restr)
|
|
||||||
call csr_restr%cp_from_lcoo(coo_restr,info)
|
|
||||||
|
|
||||||
!!$ write(0,*)me,' ',name,' after transposition ',coo_restr%get_nrows(),coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
|
|
||||||
if (info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spcnv coo_restr')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'starting sphalo/ rwxtd'
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product RESTRxAP ',&
|
|
||||||
& csr_restr%get_nrows(),csr_restr%get_ncols(), &
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols()
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(csr_restr,desc_a,acsr3,ac_csr,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
call acsr3%free()
|
|
||||||
|
|
||||||
call psb_cdasb(desc_ac,info)
|
|
||||||
|
|
||||||
call ac_csr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call ac_csr%set_ncols(desc_ac%get_local_cols())
|
|
||||||
call ac%mv_from(ac_csr)
|
|
||||||
call ac%set_asb()
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' After mv_from',psb_get_errstatus()
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' ',ac%get_fmt(),ac%get_nrows(),&
|
|
||||||
& ac%get_ncols(),ac%get_nzeros(),naggr,ntaggr
|
|
||||||
|
|
||||||
call coo_prol%set_ncols(desc_ac%get_local_cols())
|
|
||||||
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 3 on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done spmm_bld_inner '
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 call psb_error_handler(err_act)
|
|
||||||
|
|
||||||
return
|
|
||||||
contains
|
|
||||||
subroutine check_coo(me,string,coo)
|
|
||||||
implicit none
|
|
||||||
integer(psb_ipk_) :: me
|
|
||||||
type(psb_ld_coo_sparse_mat) :: coo
|
|
||||||
character(len=*) :: string
|
|
||||||
integer(psb_lpk_) :: nr,nc,nz
|
|
||||||
nr = coo%get_nrows()
|
|
||||||
nc = coo%get_ncols()
|
|
||||||
nz = coo%get_nzeros()
|
|
||||||
write(0,*) me,string,nr,nc,&
|
|
||||||
& minval(coo%ia(1:nz)),maxval(coo%ia(1:nz)),&
|
|
||||||
& minval(coo%ja(1:nz)),maxval(coo%ja(1:nz))
|
|
||||||
|
|
||||||
end subroutine check_coo
|
|
||||||
|
|
||||||
end subroutine mld_d_spmm_bld_inner
|
|
||||||
|
|
||||||
subroutine mld_ld_spmm_bld_inner(a_csr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,desc_ac,coo_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_d_inner_mod
|
|
||||||
use mld_d_base_aggregator_mod, mld_protect_name => mld_ld_spmm_bld_inner
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_ld_csr_sparse_mat), intent(inout) :: a_csr
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: nlaggr(:)
|
|
||||||
type(mld_dml_parms), intent(inout) :: parms
|
|
||||||
type(psb_ld_coo_sparse_mat), intent(inout) :: coo_prol, coo_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
type(psb_ldspmat_type), intent(out) :: ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_ipk_) :: err_act
|
|
||||||
integer(psb_ipk_) :: ictxt,np,me, icomm, ndx, minfo
|
|
||||||
character(len=40) :: name
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
type(psb_ld_coo_sparse_mat) :: ac_coo, tmpcoo
|
|
||||||
type(psb_ld_csr_sparse_mat) :: acsr3, csr_prol, ac_csr, csr_restr
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, naggr
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, nrl, nzl, ip, &
|
|
||||||
& nzt, naggrm1, naggrp1, i, k
|
|
||||||
integer(psb_lpk_) :: nrsave, ncsave, nzsave, nza
|
|
||||||
logical, parameter :: do_timings=.true., oldstyle=.false., debug=.false.
|
|
||||||
integer(psb_ipk_), save :: idx_spspmm=-1
|
|
||||||
|
|
||||||
name='mld_spmm_bld_inner'
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
icomm = desc_a%get_mpic()
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
if ((do_timings).and.(idx_spspmm==-1)) &
|
|
||||||
& idx_spspmm = psb_get_timer_idx("SPMM_BLD: par_spspmm")
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
!write(0,*)me,' ',name,' input sizes',nlaggr(:),':',naggr
|
|
||||||
|
|
||||||
!
|
|
||||||
! COO_PROL should arrive here with local numbering
|
|
||||||
!
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' Size check on entry New: ',&
|
|
||||||
& coo_prol%get_fmt(),coo_prol%get_nrows(),coo_prol%get_ncols(),coo_prol%get_nzeros(),&
|
|
||||||
& nrow,ntaggr,naggr
|
|
||||||
|
|
||||||
call coo_prol%cp_to_fmt(csr_prol,info)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product AxPROL ',&
|
|
||||||
& a_csr%get_nrows(),a_csr%get_ncols(), csr_prol%get_nrows(), &
|
|
||||||
& desc_a%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols()
|
|
||||||
if (debug) flush(0)
|
|
||||||
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(a_csr,desc_a,csr_prol,acsr3,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Done AxPROL ',&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols(), acsr3%get_nzeros(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_ac%get_local_cols()
|
|
||||||
|
|
||||||
!
|
|
||||||
! Ok first product done.
|
|
||||||
!
|
|
||||||
! Remember that RESTR must be built from PROL after halo extension,
|
|
||||||
! which is done above in psb_par_spspmm
|
|
||||||
if (debug) write(0,*)me,' ',name,' No inp_restr, transposing prol ',&
|
|
||||||
& csr_prol%get_nrows(),csr_prol%get_ncols(),csr_prol%get_nzeros()
|
|
||||||
call csr_prol%mv_to_coo(coo_restr,info)
|
|
||||||
!!$ write(0,*)me,' ',name,' new into transposition ',coo_restr%get_nrows(),&
|
|
||||||
!!$ & coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 1 (before transp) on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
call coo_restr%transp()
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
nrl = desc_ac%get_local_rows()
|
|
||||||
i=0
|
|
||||||
!
|
|
||||||
! Only keep local rows
|
|
||||||
!
|
|
||||||
do k=1, nzl
|
|
||||||
if ((1 <= coo_restr%ia(k)) .and.(coo_restr%ia(k) <= nrl)) then
|
|
||||||
i = i+1
|
|
||||||
coo_restr%val(i) = coo_restr%val(k)
|
|
||||||
coo_restr%ia(i) = coo_restr%ia(k)
|
|
||||||
coo_restr%ja(i) = coo_restr%ja(k)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
call coo_restr%set_nzeros(i)
|
|
||||||
call coo_restr%fix(info)
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 2 on coo_restr:',coo_restr)
|
|
||||||
call csr_restr%cp_from_coo(coo_restr,info)
|
|
||||||
|
|
||||||
!!$ write(0,*)me,' ',name,' after transposition ',coo_restr%get_nrows(),coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
|
|
||||||
if (info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spcnv coo_restr')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'starting sphalo/ rwxtd'
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product RESTRxAP ',&
|
|
||||||
& csr_restr%get_nrows(),csr_restr%get_ncols(), &
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols()
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(csr_restr,desc_a,acsr3,ac_csr,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
call acsr3%free()
|
|
||||||
|
|
||||||
call psb_cdasb(desc_ac,info)
|
|
||||||
|
|
||||||
call ac_csr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call ac_csr%set_ncols(desc_ac%get_local_cols())
|
|
||||||
call ac%mv_from(ac_csr)
|
|
||||||
call ac%set_asb()
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' After mv_from',psb_get_errstatus()
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' ',ac%get_fmt(),ac%get_nrows(),ac%get_ncols(),ac%get_nzeros(),naggr,ntaggr
|
|
||||||
! write(0,*) me,' ',trim(name),' Final AC newstyle ',ac%get_fmt(),ac%get_nrows(),ac%get_ncols(),ac%get_nzeros()
|
|
||||||
|
|
||||||
call coo_prol%set_ncols(desc_ac%get_local_cols())
|
|
||||||
!call coo_restr%mv_from_ifmt(csr_restr,info)
|
|
||||||
!!$ call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
!!$ call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 3 on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done spmm_bld_inner '
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 call psb_error_handler(err_act)
|
|
||||||
|
|
||||||
return
|
|
||||||
|
|
||||||
contains
|
|
||||||
subroutine check_coo(me,string,coo)
|
|
||||||
implicit none
|
|
||||||
integer(psb_ipk_) :: me
|
|
||||||
type(psb_ld_coo_sparse_mat) :: coo
|
|
||||||
character(len=*) :: string
|
|
||||||
integer(psb_lpk_) :: nr,nc,nz
|
|
||||||
nr = coo%get_nrows()
|
|
||||||
nc = coo%get_ncols()
|
|
||||||
nz = coo%get_nzeros()
|
|
||||||
write(0,*) me,string,nr,nc,&
|
|
||||||
& minval(coo%ia(1:nz)),maxval(coo%ia(1:nz)),&
|
|
||||||
& minval(coo%ja(1:nz)),maxval(coo%ja(1:nz))
|
|
||||||
|
|
||||||
end subroutine check_coo
|
|
||||||
|
|
||||||
end subroutine mld_ld_spmm_bld_inner
|
|
@ -1,301 +0,0 @@
|
|||||||
!
|
|
||||||
!
|
|
||||||
! MLD2P4 version 2.2
|
|
||||||
! MultiLevel Domain Decomposition Parallel Preconditioners Package
|
|
||||||
! based on PSBLAS (Parallel Sparse BLAS version 3.5)
|
|
||||||
!
|
|
||||||
! (C) Copyright 2008-2018
|
|
||||||
!
|
|
||||||
! Salvatore Filippone
|
|
||||||
! Pasqua D'Ambra
|
|
||||||
! Daniela di Serafino
|
|
||||||
!
|
|
||||||
! 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_daggrmat_biz_bld.F90
|
|
||||||
!
|
|
||||||
! Subroutine: mld_daggrmat_biz_bld
|
|
||||||
! Version: real
|
|
||||||
!
|
|
||||||
! This routine builds a coarse-level matrix A_C from a fine-level matrix A
|
|
||||||
! by using the Galerkin approach, i.e.
|
|
||||||
!
|
|
||||||
! A_C = P_C^T A P_C,
|
|
||||||
!
|
|
||||||
! where P_C is a prolongator from the coarse level to the fine one.
|
|
||||||
!
|
|
||||||
! This routine builds A_C according to a "bizarre" aggregation algorithm,
|
|
||||||
! using a "naive" prolongator proposed by the authors of MLD2P4. However, this
|
|
||||||
! prolongator still requires additional analysis and testing and its use is not
|
|
||||||
! recommended.
|
|
||||||
!
|
|
||||||
! The coarse-level matrix A_C is distributed among the parallel processes or
|
|
||||||
! replicated on each of them, according to the value of p%parms%coarse_mat,
|
|
||||||
! specified by the user through mld_dprecinit and mld_zprecset.
|
|
||||||
! On output from this routine the entries of AC, op_prol, op_restr
|
|
||||||
! are still in "global numbering" mode; this is fixed in the calling routine
|
|
||||||
! mld_d_lev_aggrmat_bld.
|
|
||||||
!
|
|
||||||
! Arguments:
|
|
||||||
! a - type(psb_dspmat_type), input.
|
|
||||||
! The sparse matrix structure containing the local part of
|
|
||||||
! the fine-level matrix.
|
|
||||||
! desc_a - type(psb_desc_type), input.
|
|
||||||
! The communication descriptor of the fine-level matrix.
|
|
||||||
! p - type(mld_d_onelev_type), input/output.
|
|
||||||
! The 'one-level' data structure that will contain the local
|
|
||||||
! part of the matrix to be built as well as the information
|
|
||||||
! concerning the prolongator and its transpose.
|
|
||||||
! ilaggr - integer, dimension(:), allocatable.
|
|
||||||
! The mapping between the row indices of the coarse-level
|
|
||||||
! matrix and the row indices of the fine-level matrix.
|
|
||||||
! ilaggr(i)=j means that node i in the adjacency graph
|
|
||||||
! of the fine-level matrix is mapped onto node j in the
|
|
||||||
! adjacency graph of the coarse-level matrix.
|
|
||||||
! nlaggr - integer, dimension(:), allocatable.
|
|
||||||
! nlaggr(i) contains the aggregates held by process i.
|
|
||||||
! info - integer, output.
|
|
||||||
! Error code.
|
|
||||||
!
|
|
||||||
subroutine mld_daggrmat_biz_bld(a,desc_a,ilaggr,nlaggr,parms,ac,desc_ac,op_prol,op_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_base_prec_type
|
|
||||||
use mld_d_inner_mod, mld_protect_name => mld_daggrmat_biz_bld
|
|
||||||
use mld_d_base_aggregator_mod
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_dspmat_type), intent(in) :: a
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: ilaggr(:), nlaggr(:)
|
|
||||||
type(mld_dml_parms), intent(inout) :: parms
|
|
||||||
type(psb_ldspmat_type), intent(inout) :: op_prol
|
|
||||||
type(psb_ldspmat_type), intent(out) :: ac,op_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, ip, &
|
|
||||||
& naggr, nzl,naggrm1,naggrp1, i, j, k, jd, icolF, nrw
|
|
||||||
integer(psb_ipk_) :: inaggr, nzlp, inrow
|
|
||||||
integer(psb_ipk_) :: ictxt, np, me
|
|
||||||
character(len=20) :: name
|
|
||||||
type(psb_desc_type) :: tmp_desc
|
|
||||||
type(psb_d_coo_sparse_mat) :: icoo
|
|
||||||
type(psb_ld_coo_sparse_mat) :: coo_prol, coo_restr, tmpcoo
|
|
||||||
type(psb_ld_csr_sparse_mat) :: acsr1, acsrf, csr_prol, acsr
|
|
||||||
real(psb_dpk_), allocatable :: adiag(:)
|
|
||||||
real(psb_dpk_), allocatable :: arwsum(:)
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
logical :: filter_mat
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, err_act
|
|
||||||
integer(psb_ipk_), parameter :: ncmax=16
|
|
||||||
real(psb_dpk_) :: anorm, omega, tmp, dg, theta
|
|
||||||
logical, parameter :: debug_new=.false.
|
|
||||||
character(len=80) :: filename
|
|
||||||
|
|
||||||
name='mld_aggrmat_biz_bld'
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
if (psb_errstatus_fatal()) then
|
|
||||||
info = psb_err_internal_error_; goto 9999
|
|
||||||
end if
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
theta = parms%aggr_thresh
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
filter_mat = (parms%aggr_filter == mld_filter_mat_)
|
|
||||||
|
|
||||||
!
|
|
||||||
! naggr: number of local aggregates
|
|
||||||
! nrow: local rows.
|
|
||||||
!
|
|
||||||
|
|
||||||
! Get the diagonal D
|
|
||||||
adiag = a%get_diag(info)
|
|
||||||
if (info == psb_success_) &
|
|
||||||
& call psb_realloc(ncol,adiag,info)
|
|
||||||
if (info == psb_success_) &
|
|
||||||
& call psb_halo(adiag,desc_a,info)
|
|
||||||
if (info == psb_success_) call a%csclip(icoo,info,jmax=a%get_nrows())
|
|
||||||
call icoo%mv_to_lfmt(acsr,info)
|
|
||||||
call op_prol%mv_to(coo_prol)
|
|
||||||
|
|
||||||
if(info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='sp_getdiag')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& ' Initial copies done.'
|
|
||||||
|
|
||||||
call acsr%cp_to_fmt(acsrf,info)
|
|
||||||
|
|
||||||
|
|
||||||
if (filter_mat) then
|
|
||||||
!
|
|
||||||
! Build the filtered matrix Af from A
|
|
||||||
!
|
|
||||||
|
|
||||||
do i=1, nrow
|
|
||||||
tmp = dzero
|
|
||||||
jd = -1
|
|
||||||
do j=acsrf%irp(i),acsrf%irp(i+1)-1
|
|
||||||
if (acsrf%ja(j) == i) jd = j
|
|
||||||
if (abs(acsrf%val(j)) < theta*sqrt(abs(adiag(i)*adiag(acsrf%ja(j))))) then
|
|
||||||
tmp=tmp+acsrf%val(j)
|
|
||||||
acsrf%val(j)=dzero
|
|
||||||
endif
|
|
||||||
|
|
||||||
enddo
|
|
||||||
if (jd == -1) then
|
|
||||||
write(0,*) 'Wrong input: we need the diagonal!!!!', i
|
|
||||||
else
|
|
||||||
acsrf%val(jd)=acsrf%val(jd)-tmp
|
|
||||||
end if
|
|
||||||
enddo
|
|
||||||
! Take out zeroed terms
|
|
||||||
call acsrf%clean_zeros(info)
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
do i=1,size(adiag)
|
|
||||||
if (adiag(i) /= dzero) then
|
|
||||||
adiag(i) = done / adiag(i)
|
|
||||||
else
|
|
||||||
adiag(i) = done
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
|
|
||||||
if (parms%aggr_omega_alg == mld_eig_est_) then
|
|
||||||
|
|
||||||
if (parms%aggr_eig == mld_max_norm_) then
|
|
||||||
allocate(arwsum(nrow))
|
|
||||||
call acsr%arwsum(arwsum)
|
|
||||||
anorm = maxval(abs(adiag(1:nrow)*arwsum(1:nrow)))
|
|
||||||
call psb_amx(ictxt,anorm)
|
|
||||||
omega = 4.d0/(3.d0*anorm)
|
|
||||||
parms%aggr_omega_val = omega
|
|
||||||
|
|
||||||
else
|
|
||||||
info = psb_err_internal_error_
|
|
||||||
call psb_errpush(info,name,a_err='invalid mld_aggr_eig_')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
else if (parms%aggr_omega_alg == mld_user_choice_) then
|
|
||||||
|
|
||||||
omega = parms%aggr_omega_val
|
|
||||||
|
|
||||||
else if (parms%aggr_omega_alg /= mld_user_choice_) then
|
|
||||||
info = psb_err_internal_error_
|
|
||||||
call psb_errpush(info,name,a_err='invalid mld_aggr_omega_alg_')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
call acsrf%scal(adiag,info)
|
|
||||||
if (info /= psb_success_) goto 9999
|
|
||||||
|
|
||||||
inaggr = naggr
|
|
||||||
call psb_cdall(ictxt,tmp_desc,info,nl=inaggr)
|
|
||||||
nzlp = coo_prol%get_nzeros()
|
|
||||||
call tmp_desc%indxmap%g2lip_ins(coo_prol%ja(1:nzlp),info)
|
|
||||||
call coo_prol%set_ncols(tmp_desc%get_local_cols())
|
|
||||||
call coo_prol%mv_to_fmt(csr_prol,info)
|
|
||||||
!
|
|
||||||
! Build the smoothed prolongator using either A or Af
|
|
||||||
! acsr1 = (I-w*D*A) Prol acsr1 = (I-w*D*Af) Prol
|
|
||||||
! This is always done through the variable acsrf which
|
|
||||||
! is a bit less readable, butsaves space and one extra matrix copy
|
|
||||||
!
|
|
||||||
call omega_smooth(omega,acsrf)
|
|
||||||
call psb_par_spspmm(acsrf,desc_a,csr_prol,acsr1,tmp_desc,info)
|
|
||||||
if(info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spspmm 1')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done SPSPMM 1'
|
|
||||||
nzl = acsr1%get_nzeros()
|
|
||||||
call acsr1%mv_to_coo(coo_prol,info)
|
|
||||||
|
|
||||||
call mld_spmm_bld_inner(acsr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,tmp_desc,coo_restr,info)
|
|
||||||
|
|
||||||
call op_prol%mv_from(coo_prol)
|
|
||||||
call op_restr%mv_from(coo_restr)
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done smooth_aggregate '
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 continue
|
|
||||||
call psb_errpush(info,name)
|
|
||||||
call psb_error_handler(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
contains
|
|
||||||
|
|
||||||
subroutine omega_smooth(omega,acsr)
|
|
||||||
implicit none
|
|
||||||
real(psb_dpk_),intent(in) :: omega
|
|
||||||
type(psb_ld_csr_sparse_mat), intent(inout) :: acsr
|
|
||||||
!
|
|
||||||
integer(psb_lpk_) :: i,j
|
|
||||||
do i=1,acsr%get_nrows()
|
|
||||||
do j=acsr%irp(i),acsr%irp(i+1)-1
|
|
||||||
if (acsr%ja(j) == i) then
|
|
||||||
acsr%val(j) = done - omega*acsr%val(j)
|
|
||||||
else
|
|
||||||
acsr%val(j) = - omega*acsr%val(j)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
end subroutine omega_smooth
|
|
||||||
|
|
||||||
end subroutine mld_daggrmat_biz_bld
|
|
@ -1,390 +0,0 @@
|
|||||||
!
|
|
||||||
!
|
|
||||||
! MLD2P4 Extensions
|
|
||||||
!
|
|
||||||
! (C) Copyright 2019
|
|
||||||
!
|
|
||||||
! Salvatore Filippone Cranfield University
|
|
||||||
! Pasqua D'Ambra IAC-CNR, Naples, IT
|
|
||||||
!
|
|
||||||
! 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_daggrmat_nosmth_bld.F90
|
|
||||||
!
|
|
||||||
!
|
|
||||||
subroutine mld_s_spmm_bld_inner(a_csr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,desc_ac,coo_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_s_inner_mod
|
|
||||||
use mld_s_base_aggregator_mod, mld_protect_name => mld_s_spmm_bld_inner
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_s_csr_sparse_mat), intent(inout) :: a_csr
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: nlaggr(:)
|
|
||||||
type(mld_sml_parms), intent(inout) :: parms
|
|
||||||
type(psb_ls_coo_sparse_mat), intent(inout) :: coo_prol, coo_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
type(psb_lsspmat_type), intent(out) :: ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_ipk_) :: err_act
|
|
||||||
integer(psb_ipk_) :: ictxt,np,me, icomm, ndx, minfo
|
|
||||||
character(len=40) :: name
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
type(psb_ls_coo_sparse_mat) :: ac_coo, tmpcoo
|
|
||||||
type(psb_s_csr_sparse_mat) :: acsr3, csr_prol, ac_csr, csr_restr
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, naggr
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, nrl, nzl, ip, &
|
|
||||||
& nzt, naggrm1, naggrp1, i, k
|
|
||||||
integer(psb_lpk_) :: nrsave, ncsave, nzsave, nza
|
|
||||||
logical, parameter :: do_timings=.false., oldstyle=.false., debug=.false.
|
|
||||||
integer(psb_ipk_), save :: idx_spspmm=-1
|
|
||||||
|
|
||||||
name='mld_spmm_bld_inner'
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
icomm = desc_a%get_mpic()
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
if ((do_timings).and.(idx_spspmm==-1)) &
|
|
||||||
& idx_spspmm = psb_get_timer_idx("SPMM_BLD: par_spspmm")
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
!write(0,*)me,' ',name,' input sizes',nlaggr(:),':',naggr
|
|
||||||
|
|
||||||
!
|
|
||||||
! COO_PROL should arrive here with local numbering
|
|
||||||
!
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' Size check on entry New: ',&
|
|
||||||
& coo_prol%get_fmt(),coo_prol%get_nrows(),coo_prol%get_ncols(),coo_prol%get_nzeros(),&
|
|
||||||
& nrow,ntaggr,naggr
|
|
||||||
|
|
||||||
call coo_prol%cp_to_ifmt(csr_prol,info)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product AxPROL ',&
|
|
||||||
& a_csr%get_nrows(),a_csr%get_ncols(), csr_prol%get_nrows(), &
|
|
||||||
& desc_a%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols()
|
|
||||||
if (debug) flush(0)
|
|
||||||
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(a_csr,desc_a,csr_prol,acsr3,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Done AxPROL ',&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols(), acsr3%get_nzeros(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_ac%get_local_cols()
|
|
||||||
|
|
||||||
!
|
|
||||||
! Ok first product done.
|
|
||||||
!
|
|
||||||
! Remember that RESTR must be built from PROL after halo extension,
|
|
||||||
! which is done above in psb_par_spspmm
|
|
||||||
if (debug) write(0,*)me,' ',name,' No inp_restr, transposing prol ',&
|
|
||||||
& csr_prol%get_nrows(),csr_prol%get_ncols(),csr_prol%get_nzeros()
|
|
||||||
call csr_prol%mv_to_lcoo(coo_restr,info)
|
|
||||||
!!$ write(0,*)me,' ',name,' new into transposition ',coo_restr%get_nrows(),&
|
|
||||||
!!$ & coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 1 (before transp) on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
call coo_restr%transp()
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
nrl = desc_ac%get_local_rows()
|
|
||||||
i=0
|
|
||||||
!
|
|
||||||
! Only keep local rows
|
|
||||||
!
|
|
||||||
do k=1, nzl
|
|
||||||
if ((1 <= coo_restr%ia(k)) .and.(coo_restr%ia(k) <= nrl)) then
|
|
||||||
i = i+1
|
|
||||||
coo_restr%val(i) = coo_restr%val(k)
|
|
||||||
coo_restr%ia(i) = coo_restr%ia(k)
|
|
||||||
coo_restr%ja(i) = coo_restr%ja(k)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
call coo_restr%set_nzeros(i)
|
|
||||||
call coo_restr%fix(info)
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 2 on coo_restr:',coo_restr)
|
|
||||||
call csr_restr%cp_from_lcoo(coo_restr,info)
|
|
||||||
|
|
||||||
!!$ write(0,*)me,' ',name,' after transposition ',coo_restr%get_nrows(),coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
|
|
||||||
if (info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spcnv coo_restr')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'starting sphalo/ rwxtd'
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product RESTRxAP ',&
|
|
||||||
& csr_restr%get_nrows(),csr_restr%get_ncols(), &
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols()
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(csr_restr,desc_a,acsr3,ac_csr,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
call acsr3%free()
|
|
||||||
|
|
||||||
call psb_cdasb(desc_ac,info)
|
|
||||||
|
|
||||||
call ac_csr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call ac_csr%set_ncols(desc_ac%get_local_cols())
|
|
||||||
call ac%mv_from(ac_csr)
|
|
||||||
call ac%set_asb()
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' After mv_from',psb_get_errstatus()
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' ',ac%get_fmt(),ac%get_nrows(),&
|
|
||||||
& ac%get_ncols(),ac%get_nzeros(),naggr,ntaggr
|
|
||||||
|
|
||||||
call coo_prol%set_ncols(desc_ac%get_local_cols())
|
|
||||||
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 3 on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done spmm_bld_inner '
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 call psb_error_handler(err_act)
|
|
||||||
|
|
||||||
return
|
|
||||||
contains
|
|
||||||
subroutine check_coo(me,string,coo)
|
|
||||||
implicit none
|
|
||||||
integer(psb_ipk_) :: me
|
|
||||||
type(psb_ls_coo_sparse_mat) :: coo
|
|
||||||
character(len=*) :: string
|
|
||||||
integer(psb_lpk_) :: nr,nc,nz
|
|
||||||
nr = coo%get_nrows()
|
|
||||||
nc = coo%get_ncols()
|
|
||||||
nz = coo%get_nzeros()
|
|
||||||
write(0,*) me,string,nr,nc,&
|
|
||||||
& minval(coo%ia(1:nz)),maxval(coo%ia(1:nz)),&
|
|
||||||
& minval(coo%ja(1:nz)),maxval(coo%ja(1:nz))
|
|
||||||
|
|
||||||
end subroutine check_coo
|
|
||||||
|
|
||||||
end subroutine mld_s_spmm_bld_inner
|
|
||||||
|
|
||||||
subroutine mld_ls_spmm_bld_inner(a_csr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,desc_ac,coo_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_s_inner_mod
|
|
||||||
use mld_s_base_aggregator_mod, mld_protect_name => mld_ls_spmm_bld_inner
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_ls_csr_sparse_mat), intent(inout) :: a_csr
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: nlaggr(:)
|
|
||||||
type(mld_sml_parms), intent(inout) :: parms
|
|
||||||
type(psb_ls_coo_sparse_mat), intent(inout) :: coo_prol, coo_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
type(psb_lsspmat_type), intent(out) :: ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_ipk_) :: err_act
|
|
||||||
integer(psb_ipk_) :: ictxt,np,me, icomm, ndx, minfo
|
|
||||||
character(len=40) :: name
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
type(psb_ls_coo_sparse_mat) :: ac_coo, tmpcoo
|
|
||||||
type(psb_ls_csr_sparse_mat) :: acsr3, csr_prol, ac_csr, csr_restr
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, naggr
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, nrl, nzl, ip, &
|
|
||||||
& nzt, naggrm1, naggrp1, i, k
|
|
||||||
integer(psb_lpk_) :: nrsave, ncsave, nzsave, nza
|
|
||||||
logical, parameter :: do_timings=.true., oldstyle=.false., debug=.false.
|
|
||||||
integer(psb_ipk_), save :: idx_spspmm=-1
|
|
||||||
|
|
||||||
name='mld_spmm_bld_inner'
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
icomm = desc_a%get_mpic()
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
if ((do_timings).and.(idx_spspmm==-1)) &
|
|
||||||
& idx_spspmm = psb_get_timer_idx("SPMM_BLD: par_spspmm")
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
!write(0,*)me,' ',name,' input sizes',nlaggr(:),':',naggr
|
|
||||||
|
|
||||||
!
|
|
||||||
! COO_PROL should arrive here with local numbering
|
|
||||||
!
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' Size check on entry New: ',&
|
|
||||||
& coo_prol%get_fmt(),coo_prol%get_nrows(),coo_prol%get_ncols(),coo_prol%get_nzeros(),&
|
|
||||||
& nrow,ntaggr,naggr
|
|
||||||
|
|
||||||
call coo_prol%cp_to_fmt(csr_prol,info)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product AxPROL ',&
|
|
||||||
& a_csr%get_nrows(),a_csr%get_ncols(), csr_prol%get_nrows(), &
|
|
||||||
& desc_a%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols()
|
|
||||||
if (debug) flush(0)
|
|
||||||
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(a_csr,desc_a,csr_prol,acsr3,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Done AxPROL ',&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols(), acsr3%get_nzeros(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_ac%get_local_cols()
|
|
||||||
|
|
||||||
!
|
|
||||||
! Ok first product done.
|
|
||||||
!
|
|
||||||
! Remember that RESTR must be built from PROL after halo extension,
|
|
||||||
! which is done above in psb_par_spspmm
|
|
||||||
if (debug) write(0,*)me,' ',name,' No inp_restr, transposing prol ',&
|
|
||||||
& csr_prol%get_nrows(),csr_prol%get_ncols(),csr_prol%get_nzeros()
|
|
||||||
call csr_prol%mv_to_coo(coo_restr,info)
|
|
||||||
!!$ write(0,*)me,' ',name,' new into transposition ',coo_restr%get_nrows(),&
|
|
||||||
!!$ & coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 1 (before transp) on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
call coo_restr%transp()
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
nrl = desc_ac%get_local_rows()
|
|
||||||
i=0
|
|
||||||
!
|
|
||||||
! Only keep local rows
|
|
||||||
!
|
|
||||||
do k=1, nzl
|
|
||||||
if ((1 <= coo_restr%ia(k)) .and.(coo_restr%ia(k) <= nrl)) then
|
|
||||||
i = i+1
|
|
||||||
coo_restr%val(i) = coo_restr%val(k)
|
|
||||||
coo_restr%ia(i) = coo_restr%ia(k)
|
|
||||||
coo_restr%ja(i) = coo_restr%ja(k)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
call coo_restr%set_nzeros(i)
|
|
||||||
call coo_restr%fix(info)
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 2 on coo_restr:',coo_restr)
|
|
||||||
call csr_restr%cp_from_coo(coo_restr,info)
|
|
||||||
|
|
||||||
!!$ write(0,*)me,' ',name,' after transposition ',coo_restr%get_nrows(),coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
|
|
||||||
if (info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spcnv coo_restr')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'starting sphalo/ rwxtd'
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product RESTRxAP ',&
|
|
||||||
& csr_restr%get_nrows(),csr_restr%get_ncols(), &
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols()
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(csr_restr,desc_a,acsr3,ac_csr,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
call acsr3%free()
|
|
||||||
|
|
||||||
call psb_cdasb(desc_ac,info)
|
|
||||||
|
|
||||||
call ac_csr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call ac_csr%set_ncols(desc_ac%get_local_cols())
|
|
||||||
call ac%mv_from(ac_csr)
|
|
||||||
call ac%set_asb()
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' After mv_from',psb_get_errstatus()
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' ',ac%get_fmt(),ac%get_nrows(),ac%get_ncols(),ac%get_nzeros(),naggr,ntaggr
|
|
||||||
! write(0,*) me,' ',trim(name),' Final AC newstyle ',ac%get_fmt(),ac%get_nrows(),ac%get_ncols(),ac%get_nzeros()
|
|
||||||
|
|
||||||
call coo_prol%set_ncols(desc_ac%get_local_cols())
|
|
||||||
!call coo_restr%mv_from_ifmt(csr_restr,info)
|
|
||||||
!!$ call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
!!$ call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 3 on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done spmm_bld_inner '
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 call psb_error_handler(err_act)
|
|
||||||
|
|
||||||
return
|
|
||||||
|
|
||||||
contains
|
|
||||||
subroutine check_coo(me,string,coo)
|
|
||||||
implicit none
|
|
||||||
integer(psb_ipk_) :: me
|
|
||||||
type(psb_ls_coo_sparse_mat) :: coo
|
|
||||||
character(len=*) :: string
|
|
||||||
integer(psb_lpk_) :: nr,nc,nz
|
|
||||||
nr = coo%get_nrows()
|
|
||||||
nc = coo%get_ncols()
|
|
||||||
nz = coo%get_nzeros()
|
|
||||||
write(0,*) me,string,nr,nc,&
|
|
||||||
& minval(coo%ia(1:nz)),maxval(coo%ia(1:nz)),&
|
|
||||||
& minval(coo%ja(1:nz)),maxval(coo%ja(1:nz))
|
|
||||||
|
|
||||||
end subroutine check_coo
|
|
||||||
|
|
||||||
end subroutine mld_ls_spmm_bld_inner
|
|
@ -1,300 +0,0 @@
|
|||||||
!
|
|
||||||
!
|
|
||||||
! MLD2P4 version 2.2
|
|
||||||
! MultiLevel Domain Decomposition Parallel Preconditioners Package
|
|
||||||
! based on PSBLAS (Parallel Sparse BLAS version 3.5)
|
|
||||||
!
|
|
||||||
! (C) Copyright 2008-2018
|
|
||||||
!
|
|
||||||
! Salvatore Filippone
|
|
||||||
! Pasqua D'Ambra
|
|
||||||
! Daniela di Serafino
|
|
||||||
!
|
|
||||||
! 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_saggrmat_biz_bld.F90
|
|
||||||
!
|
|
||||||
! Subroutine: mld_saggrmat_biz_bld
|
|
||||||
! Version: real
|
|
||||||
!
|
|
||||||
! This routine builds a coarse-level matrix A_C from a fine-level matrix A
|
|
||||||
! by using the Galerkin approach, i.e.
|
|
||||||
!
|
|
||||||
! A_C = P_C^T A P_C,
|
|
||||||
!
|
|
||||||
! where P_C is a prolongator from the coarse level to the fine one.
|
|
||||||
!
|
|
||||||
! This routine builds A_C according to a "bizarre" aggregation algorithm,
|
|
||||||
! using a "naive" prolongator proposed by the authors of MLD2P4. However, this
|
|
||||||
! prolongator still requires additional analysis and testing and its use is not
|
|
||||||
! recommended.
|
|
||||||
!
|
|
||||||
! The coarse-level matrix A_C is distributed among the parallel processes or
|
|
||||||
! replicated on each of them, according to the value of p%parms%coarse_mat,
|
|
||||||
! specified by the user through mld_sprecinit and mld_zprecset.
|
|
||||||
! On output from this routine the entries of AC, op_prol, op_restr
|
|
||||||
! are still in "global numbering" mode; this is fixed in the calling routine
|
|
||||||
! mld_s_lev_aggrmat_bld.
|
|
||||||
!
|
|
||||||
! Arguments:
|
|
||||||
! a - type(psb_sspmat_type), input.
|
|
||||||
! The sparse matrix structure containing the local part of
|
|
||||||
! the fine-level matrix.
|
|
||||||
! desc_a - type(psb_desc_type), input.
|
|
||||||
! The communication descriptor of the fine-level matrix.
|
|
||||||
! p - type(mld_s_onelev_type), input/output.
|
|
||||||
! The 'one-level' data structure that will contain the local
|
|
||||||
! part of the matrix to be built as well as the information
|
|
||||||
! concerning the prolongator and its transpose.
|
|
||||||
! ilaggr - integer, dimension(:), allocatable.
|
|
||||||
! The mapping between the row indices of the coarse-level
|
|
||||||
! matrix and the row indices of the fine-level matrix.
|
|
||||||
! ilaggr(i)=j means that node i in the adjacency graph
|
|
||||||
! of the fine-level matrix is mapped onto node j in the
|
|
||||||
! adjacency graph of the coarse-level matrix.
|
|
||||||
! nlaggr - integer, dimension(:), allocatable.
|
|
||||||
! nlaggr(i) contains the aggregates held by process i.
|
|
||||||
! info - integer, output.
|
|
||||||
! Error code.
|
|
||||||
!
|
|
||||||
subroutine mld_saggrmat_biz_bld(a,desc_a,ilaggr,nlaggr,parms,ac,op_prol,op_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_base_prec_type
|
|
||||||
use mld_s_inner_mod, mld_protect_name => mld_saggrmat_biz_bld
|
|
||||||
use mld_s_base_aggregator_mod
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_sspmat_type), intent(in) :: a
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: ilaggr(:), nlaggr(:)
|
|
||||||
type(mld_sml_parms), intent(inout) :: parms
|
|
||||||
type(psb_lsspmat_type), intent(inout) :: op_prol
|
|
||||||
type(psb_lsspmat_type), intent(out) :: ac,op_restr
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, ip, &
|
|
||||||
& naggr, nzl,naggrm1,naggrp1, i, j, k, jd, icolF, nrw
|
|
||||||
integer(psb_ipk_) :: inaggr, nzlp, inrow
|
|
||||||
integer(psb_ipk_) :: ictxt, np, me
|
|
||||||
character(len=20) :: name
|
|
||||||
type(psb_desc_type) :: tmp_desc
|
|
||||||
type(psb_s_coo_sparse_mat) :: icoo
|
|
||||||
type(psb_ls_coo_sparse_mat) :: coo_prol, coo_restr, tmpcoo
|
|
||||||
type(psb_ls_csr_sparse_mat) :: acsr1, acsrf, csr_prol, acsr
|
|
||||||
real(psb_spk_), allocatable :: adiag(:)
|
|
||||||
real(psb_spk_), allocatable :: arwsum(:)
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
logical :: filter_mat
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, err_act
|
|
||||||
integer(psb_ipk_), parameter :: ncmax=16
|
|
||||||
real(psb_spk_) :: anorm, omega, tmp, dg, theta
|
|
||||||
logical, parameter :: debug_new=.false.
|
|
||||||
character(len=80) :: filename
|
|
||||||
|
|
||||||
name='mld_aggrmat_biz_bld'
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
if (psb_errstatus_fatal()) then
|
|
||||||
info = psb_err_internal_error_; goto 9999
|
|
||||||
end if
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
theta = parms%aggr_thresh
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
filter_mat = (parms%aggr_filter == mld_filter_mat_)
|
|
||||||
|
|
||||||
!
|
|
||||||
! naggr: number of local aggregates
|
|
||||||
! nrow: local rows.
|
|
||||||
!
|
|
||||||
|
|
||||||
! Get the diagonal D
|
|
||||||
adiag = a%get_diag(info)
|
|
||||||
if (info == psb_success_) &
|
|
||||||
& call psb_realloc(ncol,adiag,info)
|
|
||||||
if (info == psb_success_) &
|
|
||||||
& call psb_halo(adiag,desc_a,info)
|
|
||||||
if (info == psb_success_) call a%csclip(icoo,info,jmax=a%get_nrows())
|
|
||||||
call icoo%mv_to_lfmt(acsr,info)
|
|
||||||
call op_prol%mv_to(coo_prol)
|
|
||||||
|
|
||||||
if(info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='sp_getdiag')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& ' Initial copies done.'
|
|
||||||
|
|
||||||
call acsr%cp_to_fmt(acsrf,info)
|
|
||||||
|
|
||||||
|
|
||||||
if (filter_mat) then
|
|
||||||
!
|
|
||||||
! Build the filtered matrix Af from A
|
|
||||||
!
|
|
||||||
|
|
||||||
do i=1, nrow
|
|
||||||
tmp = szero
|
|
||||||
jd = -1
|
|
||||||
do j=acsrf%irp(i),acsrf%irp(i+1)-1
|
|
||||||
if (acsrf%ja(j) == i) jd = j
|
|
||||||
if (abs(acsrf%val(j)) < theta*sqrt(abs(adiag(i)*adiag(acsrf%ja(j))))) then
|
|
||||||
tmp=tmp+acsrf%val(j)
|
|
||||||
acsrf%val(j)=szero
|
|
||||||
endif
|
|
||||||
|
|
||||||
enddo
|
|
||||||
if (jd == -1) then
|
|
||||||
write(0,*) 'Wrong input: we need the diagonal!!!!', i
|
|
||||||
else
|
|
||||||
acsrf%val(jd)=acsrf%val(jd)-tmp
|
|
||||||
end if
|
|
||||||
enddo
|
|
||||||
! Take out zeroed terms
|
|
||||||
call acsrf%clean_zeros(info)
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
do i=1,size(adiag)
|
|
||||||
if (adiag(i) /= szero) then
|
|
||||||
adiag(i) = sone / adiag(i)
|
|
||||||
else
|
|
||||||
adiag(i) = sone
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
|
|
||||||
if (parms%aggr_omega_alg == mld_eig_est_) then
|
|
||||||
|
|
||||||
if (parms%aggr_eig == mld_max_norm_) then
|
|
||||||
allocate(arwsum(nrow))
|
|
||||||
call acsr%arwsum(arwsum)
|
|
||||||
anorm = maxval(abs(adiag(1:nrow)*arwsum(1:nrow)))
|
|
||||||
call psb_amx(ictxt,anorm)
|
|
||||||
omega = 4.d0/(3.d0*anorm)
|
|
||||||
parms%aggr_omega_val = omega
|
|
||||||
|
|
||||||
else
|
|
||||||
info = psb_err_internal_error_
|
|
||||||
call psb_errpush(info,name,a_err='invalid mld_aggr_eig_')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
else if (parms%aggr_omega_alg == mld_user_choice_) then
|
|
||||||
|
|
||||||
omega = parms%aggr_omega_val
|
|
||||||
|
|
||||||
else if (parms%aggr_omega_alg /= mld_user_choice_) then
|
|
||||||
info = psb_err_internal_error_
|
|
||||||
call psb_errpush(info,name,a_err='invalid mld_aggr_omega_alg_')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
call acsrf%scal(adiag,info)
|
|
||||||
if (info /= psb_success_) goto 9999
|
|
||||||
|
|
||||||
inaggr = naggr
|
|
||||||
call psb_cdall(ictxt,tmp_desc,info,nl=inaggr)
|
|
||||||
nzlp = coo_prol%get_nzeros()
|
|
||||||
call tmp_desc%indxmap%g2lip_ins(coo_prol%ja(1:nzlp),info)
|
|
||||||
call coo_prol%set_ncols(tmp_desc%get_local_cols())
|
|
||||||
call coo_prol%mv_to_fmt(csr_prol,info)
|
|
||||||
!
|
|
||||||
! Build the smoothed prolongator using either A or Af
|
|
||||||
! acsr1 = (I-w*D*A) Prol acsr1 = (I-w*D*Af) Prol
|
|
||||||
! This is always done through the variable acsrf which
|
|
||||||
! is a bit less readable, butsaves space and one extra matrix copy
|
|
||||||
!
|
|
||||||
call omega_smooth(omega,acsrf)
|
|
||||||
call psb_par_spspmm(acsrf,desc_a,csr_prol,acsr1,tmp_desc,info)
|
|
||||||
if(info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spspmm 1')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done SPSPMM 1'
|
|
||||||
nzl = acsr1%get_nzeros()
|
|
||||||
call acsr1%mv_to_coo(coo_prol,info)
|
|
||||||
|
|
||||||
call mld_spmm_bld_inner(acsr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,tmp_desc,coo_restr,info)
|
|
||||||
|
|
||||||
call op_prol%mv_from(coo_prol)
|
|
||||||
call op_restr%mv_from(coo_restr)
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done smooth_aggregate '
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 continue
|
|
||||||
call psb_errpush(info,name)
|
|
||||||
call psb_error_handler(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
contains
|
|
||||||
|
|
||||||
subroutine omega_smooth(omega,acsr)
|
|
||||||
implicit none
|
|
||||||
real(psb_spk_),intent(in) :: omega
|
|
||||||
type(psb_ls_csr_sparse_mat), intent(inout) :: acsr
|
|
||||||
!
|
|
||||||
integer(psb_lpk_) :: i,j
|
|
||||||
do i=1,acsr%get_nrows()
|
|
||||||
do j=acsr%irp(i),acsr%irp(i+1)-1
|
|
||||||
if (acsr%ja(j) == i) then
|
|
||||||
acsr%val(j) = sone - omega*acsr%val(j)
|
|
||||||
else
|
|
||||||
acsr%val(j) = - omega*acsr%val(j)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
end subroutine omega_smooth
|
|
||||||
|
|
||||||
end subroutine mld_saggrmat_biz_bld
|
|
@ -1,390 +0,0 @@
|
|||||||
!
|
|
||||||
!
|
|
||||||
! MLD2P4 Extensions
|
|
||||||
!
|
|
||||||
! (C) Copyright 2019
|
|
||||||
!
|
|
||||||
! Salvatore Filippone Cranfield University
|
|
||||||
! Pasqua D'Ambra IAC-CNR, Naples, IT
|
|
||||||
!
|
|
||||||
! 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_daggrmat_nosmth_bld.F90
|
|
||||||
!
|
|
||||||
!
|
|
||||||
subroutine mld_z_spmm_bld_inner(a_csr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,desc_ac,coo_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_z_inner_mod
|
|
||||||
use mld_z_base_aggregator_mod, mld_protect_name => mld_z_spmm_bld_inner
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_z_csr_sparse_mat), intent(inout) :: a_csr
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: nlaggr(:)
|
|
||||||
type(mld_dml_parms), intent(inout) :: parms
|
|
||||||
type(psb_lz_coo_sparse_mat), intent(inout) :: coo_prol, coo_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
type(psb_lzspmat_type), intent(out) :: ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_ipk_) :: err_act
|
|
||||||
integer(psb_ipk_) :: ictxt,np,me, icomm, ndx, minfo
|
|
||||||
character(len=40) :: name
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
type(psb_lz_coo_sparse_mat) :: ac_coo, tmpcoo
|
|
||||||
type(psb_z_csr_sparse_mat) :: acsr3, csr_prol, ac_csr, csr_restr
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, naggr
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, nrl, nzl, ip, &
|
|
||||||
& nzt, naggrm1, naggrp1, i, k
|
|
||||||
integer(psb_lpk_) :: nrsave, ncsave, nzsave, nza
|
|
||||||
logical, parameter :: do_timings=.false., oldstyle=.false., debug=.false.
|
|
||||||
integer(psb_ipk_), save :: idx_spspmm=-1
|
|
||||||
|
|
||||||
name='mld_spmm_bld_inner'
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
icomm = desc_a%get_mpic()
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
if ((do_timings).and.(idx_spspmm==-1)) &
|
|
||||||
& idx_spspmm = psb_get_timer_idx("SPMM_BLD: par_spspmm")
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
!write(0,*)me,' ',name,' input sizes',nlaggr(:),':',naggr
|
|
||||||
|
|
||||||
!
|
|
||||||
! COO_PROL should arrive here with local numbering
|
|
||||||
!
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' Size check on entry New: ',&
|
|
||||||
& coo_prol%get_fmt(),coo_prol%get_nrows(),coo_prol%get_ncols(),coo_prol%get_nzeros(),&
|
|
||||||
& nrow,ntaggr,naggr
|
|
||||||
|
|
||||||
call coo_prol%cp_to_ifmt(csr_prol,info)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product AxPROL ',&
|
|
||||||
& a_csr%get_nrows(),a_csr%get_ncols(), csr_prol%get_nrows(), &
|
|
||||||
& desc_a%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols()
|
|
||||||
if (debug) flush(0)
|
|
||||||
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(a_csr,desc_a,csr_prol,acsr3,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Done AxPROL ',&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols(), acsr3%get_nzeros(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_ac%get_local_cols()
|
|
||||||
|
|
||||||
!
|
|
||||||
! Ok first product done.
|
|
||||||
!
|
|
||||||
! Remember that RESTR must be built from PROL after halo extension,
|
|
||||||
! which is done above in psb_par_spspmm
|
|
||||||
if (debug) write(0,*)me,' ',name,' No inp_restr, transposing prol ',&
|
|
||||||
& csr_prol%get_nrows(),csr_prol%get_ncols(),csr_prol%get_nzeros()
|
|
||||||
call csr_prol%mv_to_lcoo(coo_restr,info)
|
|
||||||
!!$ write(0,*)me,' ',name,' new into transposition ',coo_restr%get_nrows(),&
|
|
||||||
!!$ & coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 1 (before transp) on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
call coo_restr%transp()
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
nrl = desc_ac%get_local_rows()
|
|
||||||
i=0
|
|
||||||
!
|
|
||||||
! Only keep local rows
|
|
||||||
!
|
|
||||||
do k=1, nzl
|
|
||||||
if ((1 <= coo_restr%ia(k)) .and.(coo_restr%ia(k) <= nrl)) then
|
|
||||||
i = i+1
|
|
||||||
coo_restr%val(i) = coo_restr%val(k)
|
|
||||||
coo_restr%ia(i) = coo_restr%ia(k)
|
|
||||||
coo_restr%ja(i) = coo_restr%ja(k)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
call coo_restr%set_nzeros(i)
|
|
||||||
call coo_restr%fix(info)
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 2 on coo_restr:',coo_restr)
|
|
||||||
call csr_restr%cp_from_lcoo(coo_restr,info)
|
|
||||||
|
|
||||||
!!$ write(0,*)me,' ',name,' after transposition ',coo_restr%get_nrows(),coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
|
|
||||||
if (info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spcnv coo_restr')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'starting sphalo/ rwxtd'
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product RESTRxAP ',&
|
|
||||||
& csr_restr%get_nrows(),csr_restr%get_ncols(), &
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols()
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(csr_restr,desc_a,acsr3,ac_csr,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
call acsr3%free()
|
|
||||||
|
|
||||||
call psb_cdasb(desc_ac,info)
|
|
||||||
|
|
||||||
call ac_csr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call ac_csr%set_ncols(desc_ac%get_local_cols())
|
|
||||||
call ac%mv_from(ac_csr)
|
|
||||||
call ac%set_asb()
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' After mv_from',psb_get_errstatus()
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' ',ac%get_fmt(),ac%get_nrows(),&
|
|
||||||
& ac%get_ncols(),ac%get_nzeros(),naggr,ntaggr
|
|
||||||
|
|
||||||
call coo_prol%set_ncols(desc_ac%get_local_cols())
|
|
||||||
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 3 on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done spmm_bld_inner '
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 call psb_error_handler(err_act)
|
|
||||||
|
|
||||||
return
|
|
||||||
contains
|
|
||||||
subroutine check_coo(me,string,coo)
|
|
||||||
implicit none
|
|
||||||
integer(psb_ipk_) :: me
|
|
||||||
type(psb_lz_coo_sparse_mat) :: coo
|
|
||||||
character(len=*) :: string
|
|
||||||
integer(psb_lpk_) :: nr,nc,nz
|
|
||||||
nr = coo%get_nrows()
|
|
||||||
nc = coo%get_ncols()
|
|
||||||
nz = coo%get_nzeros()
|
|
||||||
write(0,*) me,string,nr,nc,&
|
|
||||||
& minval(coo%ia(1:nz)),maxval(coo%ia(1:nz)),&
|
|
||||||
& minval(coo%ja(1:nz)),maxval(coo%ja(1:nz))
|
|
||||||
|
|
||||||
end subroutine check_coo
|
|
||||||
|
|
||||||
end subroutine mld_z_spmm_bld_inner
|
|
||||||
|
|
||||||
subroutine mld_lz_spmm_bld_inner(a_csr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,desc_ac,coo_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_z_inner_mod
|
|
||||||
use mld_z_base_aggregator_mod, mld_protect_name => mld_lz_spmm_bld_inner
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_lz_csr_sparse_mat), intent(inout) :: a_csr
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: nlaggr(:)
|
|
||||||
type(mld_dml_parms), intent(inout) :: parms
|
|
||||||
type(psb_lz_coo_sparse_mat), intent(inout) :: coo_prol, coo_restr
|
|
||||||
type(psb_desc_type), intent(inout) :: desc_ac
|
|
||||||
type(psb_lzspmat_type), intent(out) :: ac
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_ipk_) :: err_act
|
|
||||||
integer(psb_ipk_) :: ictxt,np,me, icomm, ndx, minfo
|
|
||||||
character(len=40) :: name
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
type(psb_lz_coo_sparse_mat) :: ac_coo, tmpcoo
|
|
||||||
type(psb_lz_csr_sparse_mat) :: acsr3, csr_prol, ac_csr, csr_restr
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, naggr
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, nrl, nzl, ip, &
|
|
||||||
& nzt, naggrm1, naggrp1, i, k
|
|
||||||
integer(psb_lpk_) :: nrsave, ncsave, nzsave, nza
|
|
||||||
logical, parameter :: do_timings=.true., oldstyle=.false., debug=.false.
|
|
||||||
integer(psb_ipk_), save :: idx_spspmm=-1
|
|
||||||
|
|
||||||
name='mld_spmm_bld_inner'
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
icomm = desc_a%get_mpic()
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
if ((do_timings).and.(idx_spspmm==-1)) &
|
|
||||||
& idx_spspmm = psb_get_timer_idx("SPMM_BLD: par_spspmm")
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
!write(0,*)me,' ',name,' input sizes',nlaggr(:),':',naggr
|
|
||||||
|
|
||||||
!
|
|
||||||
! COO_PROL should arrive here with local numbering
|
|
||||||
!
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' Size check on entry New: ',&
|
|
||||||
& coo_prol%get_fmt(),coo_prol%get_nrows(),coo_prol%get_ncols(),coo_prol%get_nzeros(),&
|
|
||||||
& nrow,ntaggr,naggr
|
|
||||||
|
|
||||||
call coo_prol%cp_to_fmt(csr_prol,info)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product AxPROL ',&
|
|
||||||
& a_csr%get_nrows(),a_csr%get_ncols(), csr_prol%get_nrows(), &
|
|
||||||
& desc_a%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols()
|
|
||||||
if (debug) flush(0)
|
|
||||||
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(a_csr,desc_a,csr_prol,acsr3,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Done AxPROL ',&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols(), acsr3%get_nzeros(),&
|
|
||||||
& desc_ac%get_local_rows(),desc_ac%get_local_cols()
|
|
||||||
|
|
||||||
!
|
|
||||||
! Ok first product done.
|
|
||||||
!
|
|
||||||
! Remember that RESTR must be built from PROL after halo extension,
|
|
||||||
! which is done above in psb_par_spspmm
|
|
||||||
if (debug) write(0,*)me,' ',name,' No inp_restr, transposing prol ',&
|
|
||||||
& csr_prol%get_nrows(),csr_prol%get_ncols(),csr_prol%get_nzeros()
|
|
||||||
call csr_prol%mv_to_coo(coo_restr,info)
|
|
||||||
!!$ write(0,*)me,' ',name,' new into transposition ',coo_restr%get_nrows(),&
|
|
||||||
!!$ & coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 1 (before transp) on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
call coo_restr%transp()
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
nrl = desc_ac%get_local_rows()
|
|
||||||
i=0
|
|
||||||
!
|
|
||||||
! Only keep local rows
|
|
||||||
!
|
|
||||||
do k=1, nzl
|
|
||||||
if ((1 <= coo_restr%ia(k)) .and.(coo_restr%ia(k) <= nrl)) then
|
|
||||||
i = i+1
|
|
||||||
coo_restr%val(i) = coo_restr%val(k)
|
|
||||||
coo_restr%ia(i) = coo_restr%ia(k)
|
|
||||||
coo_restr%ja(i) = coo_restr%ja(k)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
call coo_restr%set_nzeros(i)
|
|
||||||
call coo_restr%fix(info)
|
|
||||||
nzl = coo_restr%get_nzeros()
|
|
||||||
call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 2 on coo_restr:',coo_restr)
|
|
||||||
call csr_restr%cp_from_coo(coo_restr,info)
|
|
||||||
|
|
||||||
!!$ write(0,*)me,' ',name,' after transposition ',coo_restr%get_nrows(),coo_restr%get_ncols(),coo_restr%get_nzeros()
|
|
||||||
|
|
||||||
if (info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spcnv coo_restr')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'starting sphalo/ rwxtd'
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,trim(name),' Product RESTRxAP ',&
|
|
||||||
& csr_restr%get_nrows(),csr_restr%get_ncols(), &
|
|
||||||
& desc_ac%get_local_rows(),desc_a%get_local_cols(),&
|
|
||||||
& acsr3%get_nrows(),acsr3%get_ncols()
|
|
||||||
if (do_timings) call psb_tic(idx_spspmm)
|
|
||||||
call psb_par_spspmm(csr_restr,desc_a,acsr3,ac_csr,desc_ac,info)
|
|
||||||
if (do_timings) call psb_toc(idx_spspmm)
|
|
||||||
call acsr3%free()
|
|
||||||
|
|
||||||
call psb_cdasb(desc_ac,info)
|
|
||||||
|
|
||||||
call ac_csr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
call ac_csr%set_ncols(desc_ac%get_local_cols())
|
|
||||||
call ac%mv_from(ac_csr)
|
|
||||||
call ac%set_asb()
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' After mv_from',psb_get_errstatus()
|
|
||||||
if (debug) write(0,*) me,' ',trim(name),' ',ac%get_fmt(),ac%get_nrows(),ac%get_ncols(),ac%get_nzeros(),naggr,ntaggr
|
|
||||||
! write(0,*) me,' ',trim(name),' Final AC newstyle ',ac%get_fmt(),ac%get_nrows(),ac%get_ncols(),ac%get_nzeros()
|
|
||||||
|
|
||||||
call coo_prol%set_ncols(desc_ac%get_local_cols())
|
|
||||||
!call coo_restr%mv_from_ifmt(csr_restr,info)
|
|
||||||
!!$ call coo_restr%set_nrows(desc_ac%get_local_rows())
|
|
||||||
!!$ call coo_restr%set_ncols(desc_a%get_local_cols())
|
|
||||||
if (debug) call check_coo(me,trim(name)//' Check 3 on coo_restr:',coo_restr)
|
|
||||||
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done spmm_bld_inner '
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 call psb_error_handler(err_act)
|
|
||||||
|
|
||||||
return
|
|
||||||
|
|
||||||
contains
|
|
||||||
subroutine check_coo(me,string,coo)
|
|
||||||
implicit none
|
|
||||||
integer(psb_ipk_) :: me
|
|
||||||
type(psb_lz_coo_sparse_mat) :: coo
|
|
||||||
character(len=*) :: string
|
|
||||||
integer(psb_lpk_) :: nr,nc,nz
|
|
||||||
nr = coo%get_nrows()
|
|
||||||
nc = coo%get_ncols()
|
|
||||||
nz = coo%get_nzeros()
|
|
||||||
write(0,*) me,string,nr,nc,&
|
|
||||||
& minval(coo%ia(1:nz)),maxval(coo%ia(1:nz)),&
|
|
||||||
& minval(coo%ja(1:nz)),maxval(coo%ja(1:nz))
|
|
||||||
|
|
||||||
end subroutine check_coo
|
|
||||||
|
|
||||||
end subroutine mld_lz_spmm_bld_inner
|
|
@ -1,300 +0,0 @@
|
|||||||
!
|
|
||||||
!
|
|
||||||
! MLD2P4 version 2.2
|
|
||||||
! MultiLevel Domain Decomposition Parallel Preconditioners Package
|
|
||||||
! based on PSBLAS (Parallel Sparse BLAS version 3.5)
|
|
||||||
!
|
|
||||||
! (C) Copyright 2008-2018
|
|
||||||
!
|
|
||||||
! Salvatore Filippone
|
|
||||||
! Pasqua D'Ambra
|
|
||||||
! Daniela di Serafino
|
|
||||||
!
|
|
||||||
! 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_zaggrmat_biz_bld.F90
|
|
||||||
!
|
|
||||||
! Subroutine: mld_zaggrmat_biz_bld
|
|
||||||
! Version: complex
|
|
||||||
!
|
|
||||||
! This routine builds a coarse-level matrix A_C from a fine-level matrix A
|
|
||||||
! by using the Galerkin approach, i.e.
|
|
||||||
!
|
|
||||||
! A_C = P_C^T A P_C,
|
|
||||||
!
|
|
||||||
! where P_C is a prolongator from the coarse level to the fine one.
|
|
||||||
!
|
|
||||||
! This routine builds A_C according to a "bizarre" aggregation algorithm,
|
|
||||||
! using a "naive" prolongator proposed by the authors of MLD2P4. However, this
|
|
||||||
! prolongator still requires additional analysis and testing and its use is not
|
|
||||||
! recommended.
|
|
||||||
!
|
|
||||||
! The coarse-level matrix A_C is distributed among the parallel processes or
|
|
||||||
! replicated on each of them, according to the value of p%parms%coarse_mat,
|
|
||||||
! specified by the user through mld_zprecinit and mld_zprecset.
|
|
||||||
! On output from this routine the entries of AC, op_prol, op_restr
|
|
||||||
! are still in "global numbering" mode; this is fixed in the calling routine
|
|
||||||
! mld_z_lev_aggrmat_bld.
|
|
||||||
!
|
|
||||||
! Arguments:
|
|
||||||
! a - type(psb_zspmat_type), input.
|
|
||||||
! The sparse matrix structure containing the local part of
|
|
||||||
! the fine-level matrix.
|
|
||||||
! desc_a - type(psb_desc_type), input.
|
|
||||||
! The communication descriptor of the fine-level matrix.
|
|
||||||
! p - type(mld_z_onelev_type), input/output.
|
|
||||||
! The 'one-level' data structure that will contain the local
|
|
||||||
! part of the matrix to be built as well as the information
|
|
||||||
! concerning the prolongator and its transpose.
|
|
||||||
! ilaggr - integer, dimension(:), allocatable.
|
|
||||||
! The mapping between the row indices of the coarse-level
|
|
||||||
! matrix and the row indices of the fine-level matrix.
|
|
||||||
! ilaggr(i)=j means that node i in the adjacency graph
|
|
||||||
! of the fine-level matrix is mapped onto node j in the
|
|
||||||
! adjacency graph of the coarse-level matrix.
|
|
||||||
! nlaggr - integer, dimension(:), allocatable.
|
|
||||||
! nlaggr(i) contains the aggregates held by process i.
|
|
||||||
! info - integer, output.
|
|
||||||
! Error code.
|
|
||||||
!
|
|
||||||
subroutine mld_zaggrmat_biz_bld(a,desc_a,ilaggr,nlaggr,parms,ac,op_prol,op_restr,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use mld_base_prec_type
|
|
||||||
use mld_z_inner_mod, mld_protect_name => mld_zaggrmat_biz_bld
|
|
||||||
use mld_z_base_aggregator_mod
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
! Arguments
|
|
||||||
type(psb_zspmat_type), intent(in) :: a
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
integer(psb_lpk_), intent(inout) :: ilaggr(:), nlaggr(:)
|
|
||||||
type(mld_dml_parms), intent(inout) :: parms
|
|
||||||
type(psb_lzspmat_type), intent(inout) :: op_prol
|
|
||||||
type(psb_lzspmat_type), intent(out) :: ac,op_restr
|
|
||||||
integer(psb_ipk_), intent(out) :: info
|
|
||||||
|
|
||||||
! Local variables
|
|
||||||
integer(psb_lpk_) :: nrow, nglob, ncol, ntaggr, ip, &
|
|
||||||
& naggr, nzl,naggrm1,naggrp1, i, j, k, jd, icolF, nrw
|
|
||||||
integer(psb_ipk_) :: inaggr, nzlp, inrow
|
|
||||||
integer(psb_ipk_) :: ictxt, np, me
|
|
||||||
character(len=20) :: name
|
|
||||||
type(psb_desc_type) :: tmp_desc
|
|
||||||
type(psb_z_coo_sparse_mat) :: icoo
|
|
||||||
type(psb_lz_coo_sparse_mat) :: coo_prol, coo_restr, tmpcoo
|
|
||||||
type(psb_lz_csr_sparse_mat) :: acsr1, acsrf, csr_prol, acsr
|
|
||||||
complex(psb_dpk_), allocatable :: adiag(:)
|
|
||||||
real(psb_dpk_), allocatable :: arwsum(:)
|
|
||||||
integer(psb_ipk_) :: ierr(5)
|
|
||||||
logical :: filter_mat
|
|
||||||
integer(psb_ipk_) :: debug_level, debug_unit, err_act
|
|
||||||
integer(psb_ipk_), parameter :: ncmax=16
|
|
||||||
real(psb_dpk_) :: anorm, omega, tmp, dg, theta
|
|
||||||
logical, parameter :: debug_new=.false.
|
|
||||||
character(len=80) :: filename
|
|
||||||
|
|
||||||
name='mld_aggrmat_biz_bld'
|
|
||||||
info=psb_success_
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
if (psb_errstatus_fatal()) then
|
|
||||||
info = psb_err_internal_error_; goto 9999
|
|
||||||
end if
|
|
||||||
debug_unit = psb_get_debug_unit()
|
|
||||||
debug_level = psb_get_debug_level()
|
|
||||||
|
|
||||||
ictxt = desc_a%get_context()
|
|
||||||
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
|
|
||||||
nglob = desc_a%get_global_rows()
|
|
||||||
nrow = desc_a%get_local_rows()
|
|
||||||
ncol = desc_a%get_local_cols()
|
|
||||||
|
|
||||||
theta = parms%aggr_thresh
|
|
||||||
|
|
||||||
naggr = nlaggr(me+1)
|
|
||||||
ntaggr = sum(nlaggr)
|
|
||||||
|
|
||||||
naggrm1 = sum(nlaggr(1:me))
|
|
||||||
naggrp1 = sum(nlaggr(1:me+1))
|
|
||||||
filter_mat = (parms%aggr_filter == mld_filter_mat_)
|
|
||||||
|
|
||||||
!
|
|
||||||
! naggr: number of local aggregates
|
|
||||||
! nrow: local rows.
|
|
||||||
!
|
|
||||||
|
|
||||||
! Get the diagonal D
|
|
||||||
adiag = a%get_diag(info)
|
|
||||||
if (info == psb_success_) &
|
|
||||||
& call psb_realloc(ncol,adiag,info)
|
|
||||||
if (info == psb_success_) &
|
|
||||||
& call psb_halo(adiag,desc_a,info)
|
|
||||||
if (info == psb_success_) call a%csclip(icoo,info,jmax=a%get_nrows())
|
|
||||||
call icoo%mv_to_lfmt(acsr,info)
|
|
||||||
call op_prol%mv_to(coo_prol)
|
|
||||||
|
|
||||||
if(info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='sp_getdiag')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& ' Initial copies done.'
|
|
||||||
|
|
||||||
call acsr%cp_to_fmt(acsrf,info)
|
|
||||||
|
|
||||||
|
|
||||||
if (filter_mat) then
|
|
||||||
!
|
|
||||||
! Build the filtered matrix Af from A
|
|
||||||
!
|
|
||||||
|
|
||||||
do i=1, nrow
|
|
||||||
tmp = zzero
|
|
||||||
jd = -1
|
|
||||||
do j=acsrf%irp(i),acsrf%irp(i+1)-1
|
|
||||||
if (acsrf%ja(j) == i) jd = j
|
|
||||||
if (abs(acsrf%val(j)) < theta*sqrt(abs(adiag(i)*adiag(acsrf%ja(j))))) then
|
|
||||||
tmp=tmp+acsrf%val(j)
|
|
||||||
acsrf%val(j)=zzero
|
|
||||||
endif
|
|
||||||
|
|
||||||
enddo
|
|
||||||
if (jd == -1) then
|
|
||||||
write(0,*) 'Wrong input: we need the diagonal!!!!', i
|
|
||||||
else
|
|
||||||
acsrf%val(jd)=acsrf%val(jd)-tmp
|
|
||||||
end if
|
|
||||||
enddo
|
|
||||||
! Take out zeroed terms
|
|
||||||
call acsrf%clean_zeros(info)
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
do i=1,size(adiag)
|
|
||||||
if (adiag(i) /= zzero) then
|
|
||||||
adiag(i) = zone / adiag(i)
|
|
||||||
else
|
|
||||||
adiag(i) = zone
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
|
|
||||||
if (parms%aggr_omega_alg == mld_eig_est_) then
|
|
||||||
|
|
||||||
if (parms%aggr_eig == mld_max_norm_) then
|
|
||||||
allocate(arwsum(nrow))
|
|
||||||
call acsr%arwsum(arwsum)
|
|
||||||
anorm = maxval(abs(adiag(1:nrow)*arwsum(1:nrow)))
|
|
||||||
call psb_amx(ictxt,anorm)
|
|
||||||
omega = 4.d0/(3.d0*anorm)
|
|
||||||
parms%aggr_omega_val = omega
|
|
||||||
|
|
||||||
else
|
|
||||||
info = psb_err_internal_error_
|
|
||||||
call psb_errpush(info,name,a_err='invalid mld_aggr_eig_')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
else if (parms%aggr_omega_alg == mld_user_choice_) then
|
|
||||||
|
|
||||||
omega = parms%aggr_omega_val
|
|
||||||
|
|
||||||
else if (parms%aggr_omega_alg /= mld_user_choice_) then
|
|
||||||
info = psb_err_internal_error_
|
|
||||||
call psb_errpush(info,name,a_err='invalid mld_aggr_omega_alg_')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
call acsrf%scal(adiag,info)
|
|
||||||
if (info /= psb_success_) goto 9999
|
|
||||||
|
|
||||||
inaggr = naggr
|
|
||||||
call psb_cdall(ictxt,tmp_desc,info,nl=inaggr)
|
|
||||||
nzlp = coo_prol%get_nzeros()
|
|
||||||
call tmp_desc%indxmap%g2lip_ins(coo_prol%ja(1:nzlp),info)
|
|
||||||
call coo_prol%set_ncols(tmp_desc%get_local_cols())
|
|
||||||
call coo_prol%mv_to_fmt(csr_prol,info)
|
|
||||||
!
|
|
||||||
! Build the smoothed prolongator using either A or Af
|
|
||||||
! acsr1 = (I-w*D*A) Prol acsr1 = (I-w*D*Af) Prol
|
|
||||||
! This is always done through the variable acsrf which
|
|
||||||
! is a bit less readable, butsaves space and one extra matrix copy
|
|
||||||
!
|
|
||||||
call omega_smooth(omega,acsrf)
|
|
||||||
call psb_par_spspmm(acsrf,desc_a,csr_prol,acsr1,tmp_desc,info)
|
|
||||||
if(info /= psb_success_) then
|
|
||||||
call psb_errpush(psb_err_from_subroutine_,name,a_err='spspmm 1')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done SPSPMM 1'
|
|
||||||
nzl = acsr1%get_nzeros()
|
|
||||||
call acsr1%mv_to_coo(coo_prol,info)
|
|
||||||
|
|
||||||
call mld_spmm_bld_inner(acsr,desc_a,nlaggr,parms,ac,&
|
|
||||||
& coo_prol,tmp_desc,coo_restr,info)
|
|
||||||
|
|
||||||
call op_prol%mv_from(coo_prol)
|
|
||||||
call op_restr%mv_from(coo_restr)
|
|
||||||
|
|
||||||
if (debug_level >= psb_debug_outer_) &
|
|
||||||
& write(debug_unit,*) me,' ',trim(name),&
|
|
||||||
& 'Done smooth_aggregate '
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 continue
|
|
||||||
call psb_errpush(info,name)
|
|
||||||
call psb_error_handler(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
contains
|
|
||||||
|
|
||||||
subroutine omega_smooth(omega,acsr)
|
|
||||||
implicit none
|
|
||||||
real(psb_dpk_),intent(in) :: omega
|
|
||||||
type(psb_lz_csr_sparse_mat), intent(inout) :: acsr
|
|
||||||
!
|
|
||||||
integer(psb_lpk_) :: i,j
|
|
||||||
do i=1,acsr%get_nrows()
|
|
||||||
do j=acsr%irp(i),acsr%irp(i+1)-1
|
|
||||||
if (acsr%ja(j) == i) then
|
|
||||||
acsr%val(j) = zone - omega*acsr%val(j)
|
|
||||||
else
|
|
||||||
acsr%val(j) = - omega*acsr%val(j)
|
|
||||||
end if
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
end subroutine omega_smooth
|
|
||||||
|
|
||||||
end subroutine mld_zaggrmat_biz_bld
|
|
Loading…
Reference in New Issue