You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
psblas3/base/tools/psb_cdrep.f90

231 lines
8.0 KiB
Fortran

!!$
!!$ Parallel Sparse BLAS version 2.2
!!$ (C) Copyright 2006/2007/2008
!!$ Salvatore Filippone University of Rome Tor Vergata
!!$ Alfredo Buttari University of Rome Tor Vergata
!!$
!!$ Redistribution and use in source and binary forms, with or without
!!$ modification, are permitted provided that the following conditions
!!$ are met:
!!$ 1. Redistributions of source code must retain the above copyright
!!$ notice, this list of conditions and the following disclaimer.
!!$ 2. Redistributions in binary form must reproduce the above copyright
!!$ notice, this list of conditions, and the following disclaimer in the
!!$ documentation and/or other materials provided with the distribution.
!!$ 3. The name of the PSBLAS group or the names of its contributors may
!!$ not be used to endorse or promote products derived from this
!!$ software without specific written permission.
!!$
!!$ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
!!$ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
!!$ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
!!$ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PSBLAS GROUP OR ITS CONTRIBUTORS
!!$ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
!!$ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
!!$ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
!!$ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
!!$ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
!!$ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
!!$ POSSIBILITY OF SUCH DAMAGE.
!!$
!!$
19 years ago
! Purpose
! == = ====
19 years ago
!
! Allocate special descriptor for replicated index space.
!
!
!
! INPUT
! == ====
19 years ago
! M :(Global Input) Integer
! Total number of equations
! required.
!
! ictxt : (Global Input)Integer BLACS context for an NPx1 grid
19 years ago
! required.
!
! OUTPUT
! == =======
! desc : TYPEDESC
! desc OUTPUT FIELDS:
19 years ago
!
! MATRIX_DATA : Pointer to integer Array
! contains some
! local and global information about matrix:
!
! NOTATION STORED IN EXPLANATION
! ------------ ---------------------- -------------------------------------
! DEC_TYPE MATRIX_DATA[DEC_TYPE_] Decomposition type, temporarly is
! setted to 1( matrix not yet assembled)
! M MATRIX_DATA[M_] Total number of equations
! N MATRIX_DATA[N_] Total number of variables
! N_ROW MATRIX_DATA[N_ROW_] Number of local equations
! N_COL MATRIX_DATA[N_COL_] Number of local columns (see below)
! CTXT_A MATRIX_DATA[CTXT_] The BLACS context handle,
! indicating
! the global context of the operation
! on the matrix.
! The context itself is global.
!
! GLOB_TO_LOC Array of dimension equal to number of global
! rows/cols (MATRIX_DATA[M_]). On exit,
! for all global indices either:
! 1. The index belongs to the current process; the entry
! is set to the next free local row index.
! 2. The index belongs to process P (0<=P<=NP-1); the entry
! is set to
! -(NP+P+1)
!
! LOC_TO_GLOB An array of dimension equal to number of local cols N_COL
! i.e. all columns of the matrix such that there is at least
! one nonzero entry within the local row range. At the time
! this routine is called N_COL cannot be know, so we set
! N_COL=N_ROW, and dimension this vector on N_ROW plus an
! estimate. On exit the vector elements are set
! to the index of the corresponding entry in GLOB_TO_LOC, or
! to -1 for indices I>N_ROW.
!
!
! HALO_INDEX Not touched here, as it depends on the matrix pattern
!
! OVRLAP_INDEX On exit from this routine, the overlap indices are stored in
! triples (Proc, 1, Index), similar to the assembled format
! but neither optimized, nor deadlock free.
! List is terminated with -1
!
! OVRLAP_ELEM On exit from this routine, just a list of pairs (index,#p).
! List is terminated with -1.
!
!
! END OF desc OUTPUT FIELDS
19 years ago
!
!
psblas3: base/Makefile base/modules/Makefile base/modules/psb_base_tools_mod.f90 base/modules/psb_c_psblas_mod.f90 base/modules/psb_c_tools_mod.f90 base/modules/psb_d_psblas_mod.f90 base/modules/psb_d_tools_mod.f90 base/modules/psb_linmap_mod.f90 base/modules/psb_psblas_mod.f90 base/modules/psb_s_psblas_mod.f90 base/modules/psb_s_tools_mod.f90 base/modules/psb_serial_mod.f90 base/modules/psb_z_psblas_mod.f90 base/modules/psb_z_tools_mod.f90 base/psblas/psb_camax.f90 base/psblas/psb_casum.f90 base/psblas/psb_caxpby.f90 base/psblas/psb_cdot.f90 base/psblas/psb_cnrm2.f90 base/psblas/psb_cnrmi.f90 base/psblas/psb_cspmm.f90 base/psblas/psb_cspsm.f90 base/psblas/psb_damax.f90 base/psblas/psb_dasum.f90 base/psblas/psb_daxpby.f90 base/psblas/psb_ddot.f90 base/psblas/psb_dnrm2.f90 base/psblas/psb_dspmm.f90 base/psblas/psb_dspsm.f90 base/psblas/psb_samax.f90 base/psblas/psb_sasum.f90 base/psblas/psb_saxpby.f90 base/psblas/psb_sdot.f90 base/psblas/psb_snrm2.f90 base/psblas/psb_sspmm.f90 base/psblas/psb_sspsm.f90 base/psblas/psb_sxdot.f90 base/psblas/psb_zamax.f90 base/psblas/psb_zasum.f90 base/psblas/psb_zaxpby.f90 base/psblas/psb_zdot.f90 base/psblas/psb_znrm2.f90 base/psblas/psb_zspmm.f90 base/psblas/psb_zspsm.f90 base/serial/f03/psb_d_coo_impl.f03 base/serial/psb_crwextd.f90 base/serial/psb_drwextd.f90 base/serial/psb_srwextd.f90 base/serial/psb_zrwextd.f90 base/tools/psb_callc.f90 base/tools/psb_casb.f90 base/tools/psb_ccdbldext.F90 base/tools/psb_cd_inloc.f90 base/tools/psb_cd_lstext.f90 base/tools/psb_cd_reinit.f90 base/tools/psb_cd_set_bld.f90 base/tools/psb_cdals.f90 base/tools/psb_cdalv.f90 base/tools/psb_cdcpy.f90 base/tools/psb_cdins.f90 base/tools/psb_cdprt.f90 base/tools/psb_cdren.f90 base/tools/psb_cdrep.f90 base/tools/psb_cfree.f90 base/tools/psb_cins.f90 base/tools/psb_cspalloc.f90 base/tools/psb_cspasb.f90 base/tools/psb_cspfree.f90 base/tools/psb_csphalo.F90 base/tools/psb_cspins.f90 base/tools/psb_csprn.f90 base/tools/psb_dallc.f90 base/tools/psb_dasb.f90 base/tools/psb_dcdbldext.F90 base/tools/psb_dfree.f90 base/tools/psb_dins.f90 base/tools/psb_dspalloc.f90 base/tools/psb_dspasb.f90 base/tools/psb_dspfree.f90 base/tools/psb_dsphalo.F90 base/tools/psb_dspins.f90 base/tools/psb_dsprn.f90 base/tools/psb_get_overlap.f90 base/tools/psb_glob_to_loc.f90 base/tools/psb_ialloc.f90 base/tools/psb_iasb.f90 base/tools/psb_icdasb.F90 base/tools/psb_ifree.f90 base/tools/psb_iins.f90 base/tools/psb_linmap.f90 base/tools/psb_loc_to_glob.f90 base/tools/psb_map.f90 base/tools/psb_sallc.f90 base/tools/psb_sasb.f90 base/tools/psb_scdbldext.F90 base/tools/psb_sfree.f90 base/tools/psb_sins.f90 base/tools/psb_sspalloc.f90 base/tools/psb_sspasb.f90 base/tools/psb_sspfree.f90 base/tools/psb_ssphalo.F90 base/tools/psb_sspins.f90 base/tools/psb_ssprn.f90 base/tools/psb_zallc.f90 base/tools/psb_zasb.f90 base/tools/psb_zcdbldext.F90 base/tools/psb_zfree.f90 base/tools/psb_zins.f90 base/tools/psb_zspalloc.f90 base/tools/psb_zspasb.f90 base/tools/psb_zspfree.f90 base/tools/psb_zsphalo.F90 base/tools/psb_zspins.f90 base/tools/psb_zsprn.f90 krylov/Makefile krylov/psb_cbicg.f90 krylov/psb_ccg.f90 krylov/psb_ccgs.f90 krylov/psb_ccgstab.f90 krylov/psb_ccgstabl.f90 krylov/psb_crgmres.f90 krylov/psb_dbicg.f90 krylov/psb_dcg.F90 krylov/psb_dcgs.f90 krylov/psb_dcgstab.F90 krylov/psb_dcgstabl.f90 krylov/psb_drgmres.f90 krylov/psb_krylov_mod.f90 krylov/psb_sbicg.f90 krylov/psb_scg.F90 krylov/psb_scgs.f90 krylov/psb_scgstab.F90 krylov/psb_scgstabl.f90 krylov/psb_srgmres.f90 krylov/psb_zbicg.f90 krylov/psb_zcg.F90 krylov/psb_zcgs.f90 krylov/psb_zcgstab.f90 krylov/psb_zcgstabl.f90 krylov/psb_zrgmres.f90 prec/Makefile prec/psb_c_bjacprec.f03 prec/psb_c_diagprec.f03 prec/psb_c_nullprec.f03 prec/psb_c_prec_type.f03 prec/psb_cilu_fct.f90 prec/psb_cprc_aply.f90 prec/psb_cprecbld.f90 prec/psb_cprecinit.f90 prec/psb_cprecset.f90 prec/psb_d_bjacprec.f03 prec/psb_d_diagprec.f03 prec/psb_d_nullprec.f03 prec/psb_d_prec_type.f03 prec/psb_dilu_fct.f90 prec/psb_dprc_aply.f90 prec/psb_dprecbld.f90 prec/psb_dprecinit.f90 prec/psb_dprecset.f90 prec/psb_prec_const_mod.f03 prec/psb_prec_mod.f90 prec/psb_s_bjacprec.f03 prec/psb_s_diagprec.f03 prec/psb_s_nullprec.f03 prec/psb_s_prec_type.f03 prec/psb_silu_fct.f90 prec/psb_sprc_aply.f90 prec/psb_sprecbld.f90 prec/psb_sprecinit.f90 prec/psb_sprecset.f90 prec/psb_z_bjacprec.f03 prec/psb_z_diagprec.f03 prec/psb_z_nullprec.f03 prec/psb_z_prec_type.f03 prec/psb_zilu_fct.f90 prec/psb_zprc_aply.f90 prec/psb_zprecbld.f90 prec/psb_zprecinit.f90 prec/psb_zprecset.f90 test/fileread/cf_sample.f90 test/fileread/df_sample.f90 test/fileread/getp.f90 test/fileread/sf_sample.f90 test/fileread/zf_sample.f90 test/pargen/ppde.f90 test/pargen/spde.f90 test/serial/d_coo_matgen.f03 test/serial/d_matgen.f03 test/util/dhb2mm.f90 test/util/dmm2hb.f90 test/util/zhb2mm.f90 test/util/zmm2hb.f90 util/psb_hbio_mod.f90 util/psb_mat_dist_mod.f90 util/psb_metispart_mod.F90 util/psb_mmio_mod.f90 Three batches of changes: 1. Change psb_base_mod into psb_sparse_mod. 2. Change USE statements in TOOLS directory. 3. Refactor some of the modules to work around XLF problems.
15 years ago
subroutine psb_cdrep(m, ictxt, desc, info)
use psb_sparse_mod
use psi_mod
19 years ago
implicit None
!....Parameters...
Integer, intent(in) :: m,ictxt
19 years ago
integer, intent(out) :: info
Type(psb_desc_type), intent(out) :: desc
19 years ago
!locals
Integer :: i,np,me,err,n,err_act
integer :: int_err(5),exch(2), thalo(1), tovr(1), text(1)
integer :: debug_level, debug_unit
character(len=20) :: name
19 years ago
if(psb_get_errstatus() /= 0) return
info=psb_success_
19 years ago
err=0
name = 'psb_cdrep'
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
19 years ago
call psb_info(ictxt, me, np)
if (debug_level >= psb_debug_ext_) &
& write(debug_unit,*) me,' ',trim(name),': ',np
19 years ago
n = m
!... check m and n parameters....
if (m < 1) then
info = psb_err_iarg_neg_
19 years ago
int_err(1) = 1
int_err(2) = m
else if (n < 1) then
info = psb_err_iarg_neg_
19 years ago
int_err(1) = 2
int_err(2) = n
endif
if (info /= psb_success_) then
call psb_errpush(info,name,i_err=int_err)
goto 9999
19 years ago
end if
if (debug_level >= psb_debug_ext_) &
& write(debug_unit,*) me,' ',trim(name),': doing global checks'
19 years ago
!global check on m and n parameters
if (me == psb_root_) then
19 years ago
exch(1)=m
exch(2)=n
call psb_bcast(ictxt,exch(1:2),root=psb_root_)
19 years ago
else
call psb_bcast(ictxt,exch(1:2),root=psb_root_)
19 years ago
if (exch(1) /= m) then
info=psb_err_parm_differs_among_procs_
19 years ago
int_err(1)=1
else if (exch(2) /= n) then
info=psb_err_parm_differs_among_procs_
19 years ago
int_err(1)=2
endif
endif
if (info /= psb_success_) then
19 years ago
call psb_errpush(info,name,i_err=int_err)
goto 9999
end if
call psb_nullify_desc(desc)
19 years ago
!count local rows number
! allocate work vector
allocate(desc%idxmap%glob_to_loc(m),desc%matrix_data(psb_mdata_size_),&
& desc%idxmap%loc_to_glob(m),desc%lprm(1),&
& desc%ovrlap_elem(0,3),stat=info)
if (info /= psb_success_) then
info=psb_err_alloc_request_
int_err(1)=2*m+psb_mdata_size_+1
call psb_errpush(info,name,i_err=int_err,a_err='integer')
19 years ago
goto 9999
endif
! If the index space is replicated there's no point in not having
! the full map on the current process.
desc%idxmap%state = psb_desc_normal_
desc%matrix_data(psb_m_) = m
desc%matrix_data(psb_n_) = n
desc%matrix_data(psb_n_row_) = m
desc%matrix_data(psb_n_col_) = n
desc%matrix_data(psb_ctxt_) = ictxt
call psb_get_mpicomm(ictxt,desc%matrix_data(psb_mpi_c_))
desc%matrix_data(psb_dec_type_) = psb_desc_bld_
19 years ago
do i=1,m
desc%idxmap%glob_to_loc(i) = i
desc%idxmap%loc_to_glob(i) = i
19 years ago
enddo
tovr = -1
thalo = -1
text = -1
desc%lprm(:) = 0
call psi_cnv_dsc(thalo,tovr,text,desc,info)
if (info /= psb_success_) then
call psb_errpush(psb_err_from_subroutine_,name,a_err='psi_cvn_dsc')
goto 9999
end if
desc%matrix_data(psb_dec_type_) = psb_desc_repl_
19 years ago
if (debug_level >= psb_debug_ext_) &
& write(debug_unit,*) me,' ',trim(name),': end'
19 years ago
call psb_erractionrestore(err_act)
return
19 years ago
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error(ictxt)
return
19 years ago
end if
return
end subroutine psb_cdrep