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.
107 lines
4.5 KiB
Fortran
107 lines
4.5 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.
|
|
!!$
|
|
!!$
|
|
|
|
module psb_const_mod
|
|
! This should be integer(8), and normally different from default integer.
|
|
integer, parameter :: longndig=12
|
|
integer, parameter :: psb_long_int_k_ = selected_int_kind(longndig)
|
|
!
|
|
! These must be the kind parameter corresponding to MPI_DOUBLE_PRECISION
|
|
! and MPI_REAL
|
|
!
|
|
integer, parameter :: psb_dpk_ = kind(1.d0)
|
|
integer, parameter :: psb_spk_ = kind(1.e0)
|
|
integer, save :: psb_sizeof_dp, psb_sizeof_sp
|
|
integer, save :: psb_sizeof_int, psb_sizeof_long_int
|
|
|
|
!
|
|
! Handy & miscellaneous constants
|
|
!
|
|
integer, parameter :: izero=0, ione=1
|
|
integer, parameter :: itwo=2, ithree=3,mone=-1, psb_root_=0
|
|
real(psb_spk_), parameter :: szero=0.e0, sone=1.e0
|
|
real(psb_dpk_), parameter :: dzero=0.d0, done=1.d0
|
|
complex(psb_spk_), parameter :: czero=(0.e0,0.0e0)
|
|
complex(psb_spk_), parameter :: cone=(1.e0,0.0e0)
|
|
complex(psb_dpk_), parameter :: zzero=(0.d0,0.0d0)
|
|
complex(psb_dpk_), parameter :: zone=(1.d0,0.0d0)
|
|
real(psb_dpk_), parameter :: epstol=1.d-32, psb_percent_=0.7
|
|
real(psb_spk_), parameter :: s_epstol=1.e-16 ! How to choose this?
|
|
character, parameter :: psb_all_='A', psb_topdef_=' '
|
|
|
|
!
|
|
! Sparse matrix constants
|
|
!
|
|
|
|
!
|
|
!
|
|
! Queries into spmat%info
|
|
!
|
|
integer, parameter :: psb_nztotreq_=1, psb_nzrowreq_=2
|
|
integer, parameter :: psb_nzsizereq_=3
|
|
!
|
|
! Entries and values for spmat%info
|
|
!
|
|
integer, parameter :: psb_nnz_=1
|
|
integer, parameter :: psb_del_bnd_=7, psb_srtd_=8
|
|
integer, parameter :: psb_state_=9
|
|
integer, parameter :: psb_upd_pnt_=10
|
|
integer, parameter :: psb_dupl_=11, psb_upd_=12
|
|
integer, parameter :: psb_ifasize_=16
|
|
!
|
|
integer, parameter :: psb_invalid_ = -1
|
|
integer, parameter :: psb_spmat_null_=0, psb_spmat_bld_=1
|
|
integer, parameter :: psb_spmat_asb_=2, psb_spmat_upd_=4
|
|
|
|
integer, parameter :: psb_ireg_flgs_=10, psb_ip2_=0
|
|
integer, parameter :: psb_iflag_=2, psb_ichk_=3
|
|
integer, parameter :: psb_nnzt_=4, psb_zero_=5,psb_ipc_=6
|
|
! Duplicate coefficients handling
|
|
! These are usually set while calling spcnv as one of its
|
|
! optional arugments.
|
|
integer, parameter :: psb_dupl_ovwrt_ = 0
|
|
integer, parameter :: psb_dupl_add_ = 1
|
|
integer, parameter :: psb_dupl_err_ = 2
|
|
integer, parameter :: psb_dupl_def_ = psb_dupl_ovwrt_
|
|
! Matrix update mode
|
|
integer, parameter :: psb_upd_srch_ = 98764
|
|
integer, parameter :: psb_upd_perm_ = 98765
|
|
integer, parameter :: psb_upd_dflt_ = psb_upd_srch_
|
|
! Mark a COO matrix with sorted entries.
|
|
integer, parameter :: psb_isrtdcoo_ = 98761
|
|
integer, parameter :: psb_maxjdrows_=8, psb_minjdrows_=4
|
|
integer, parameter :: psb_dbleint_=2
|
|
character(len=5) :: psb_fidef_='CSR'
|
|
|
|
|
|
end module psb_const_mod
|