psblas3:
base/modules/Makefile base/modules/psb_c_linmap_mod.f90 base/modules/psb_d_linmap_mod.f90 base/modules/psb_desc_type.f90 base/modules/psb_linmap_mod.f90 base/modules/psb_linmap_type_mod.f90 base/modules/psb_s_linmap_mod.f90 base/modules/psb_z_linmap_mod.f90 base/serial/impl/psb_d_csc_impl.f90 base/serial/impl/psb_d_csr_impl.f90 base/tools/psb_c_map.f90 base/tools/psb_d_map.f90 base/tools/psb_s_map.f90 base/tools/psb_z_map.f90 Map fixes.psblas3-type-indexed
parent
4352c62788
commit
09b7d94bd3
@ -1,182 +0,0 @@
|
|||||||
!!$
|
|
||||||
!!$ Parallel Sparse BLAS version 3.0
|
|
||||||
!!$ (C) Copyright 2006, 2007, 2008, 2009, 2010
|
|
||||||
!!$ Salvatore Filippone University of Rome Tor Vergata
|
|
||||||
!!$ Alfredo Buttari CNRS-IRIT, Toulouse
|
|
||||||
!!$
|
|
||||||
!!$ 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.
|
|
||||||
!!$
|
|
||||||
!!$
|
|
||||||
!
|
|
||||||
!
|
|
||||||
! package: psb_linmap_type_mod
|
|
||||||
! Defines data types for mapping between vectors belonging
|
|
||||||
! to different spaces.
|
|
||||||
!
|
|
||||||
module psb_linmap_type_mod
|
|
||||||
use psb_const_mod
|
|
||||||
use psb_mat_mod, only: psb_dspmat_type, psb_sspmat_type,&
|
|
||||||
& psb_zspmat_type, psb_cspmat_type
|
|
||||||
use psb_descriptor_type, only: psb_desc_type
|
|
||||||
|
|
||||||
|
|
||||||
! Inter-descriptor mapping data structures.
|
|
||||||
integer, parameter :: psb_map_kind_ = 1
|
|
||||||
integer, parameter :: psb_map_data_ = 2
|
|
||||||
integer, parameter :: psb_map_integer_ = 1
|
|
||||||
integer, parameter :: psb_map_single_ = 2
|
|
||||||
integer, parameter :: psb_map_double_ = 3
|
|
||||||
integer, parameter :: psb_map_complex_ = 4
|
|
||||||
integer, parameter :: psb_map_double_complex_ = 5
|
|
||||||
|
|
||||||
integer, parameter :: psb_itd_data_size_=20
|
|
||||||
|
|
||||||
|
|
||||||
type psb_slinmap_type
|
|
||||||
integer, allocatable :: itd_data(:), iaggr(:), naggr(:)
|
|
||||||
type(psb_desc_type), pointer :: p_desc_X=>null(), p_desc_Y=>null()
|
|
||||||
type(psb_desc_type) :: desc_X, desc_Y
|
|
||||||
type(psb_sspmat_type) :: map_X2Y, map_Y2X
|
|
||||||
contains
|
|
||||||
procedure, pass(map) :: sizeof => s_map_sizeof
|
|
||||||
end type psb_slinmap_type
|
|
||||||
|
|
||||||
type psb_dlinmap_type
|
|
||||||
integer, allocatable :: itd_data(:), iaggr(:), naggr(:)
|
|
||||||
type(psb_desc_type), pointer :: p_desc_X=>null(), p_desc_Y=>null()
|
|
||||||
type(psb_desc_type) :: desc_X, desc_Y
|
|
||||||
type(psb_dspmat_type) :: map_X2Y, map_Y2X
|
|
||||||
contains
|
|
||||||
procedure, pass(map) :: sizeof => d_map_sizeof
|
|
||||||
end type psb_dlinmap_type
|
|
||||||
|
|
||||||
type psb_clinmap_type
|
|
||||||
integer, allocatable :: itd_data(:), iaggr(:), naggr(:)
|
|
||||||
type(psb_desc_type), pointer :: p_desc_X=>null(), p_desc_Y=>null()
|
|
||||||
type(psb_desc_type) :: desc_X, desc_Y
|
|
||||||
type(psb_cspmat_type) :: map_X2Y, map_Y2X
|
|
||||||
contains
|
|
||||||
procedure, pass(map) :: sizeof => c_map_sizeof
|
|
||||||
end type psb_clinmap_type
|
|
||||||
|
|
||||||
type psb_zlinmap_type
|
|
||||||
integer, allocatable :: itd_data(:), iaggr(:), naggr(:)
|
|
||||||
type(psb_desc_type), pointer :: p_desc_X=>null(), p_desc_Y=>null()
|
|
||||||
type(psb_desc_type) :: desc_X, desc_Y
|
|
||||||
type(psb_zspmat_type) :: map_X2Y, map_Y2X
|
|
||||||
contains
|
|
||||||
procedure, pass(map) :: sizeof => z_map_sizeof
|
|
||||||
end type psb_zlinmap_type
|
|
||||||
|
|
||||||
private :: s_map_sizeof, d_map_sizeof, c_map_sizeof, z_map_sizeof
|
|
||||||
|
|
||||||
contains
|
|
||||||
|
|
||||||
function s_map_sizeof(map) result(val)
|
|
||||||
use psb_descriptor_type
|
|
||||||
use psb_s_mat_mod
|
|
||||||
implicit none
|
|
||||||
class(psb_slinmap_type), intent(in) :: map
|
|
||||||
integer(psb_long_int_k_) :: val
|
|
||||||
|
|
||||||
val = 0
|
|
||||||
if (allocated(map%itd_data)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%itd_data)
|
|
||||||
if (allocated(map%iaggr)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%iaggr)
|
|
||||||
if (allocated(map%naggr)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%naggr)
|
|
||||||
val = val + map%desc_X%sizeof()
|
|
||||||
val = val + map%desc_Y%sizeof()
|
|
||||||
val = val + map%map_X2Y%sizeof()
|
|
||||||
val = val + map%map_Y2X%sizeof()
|
|
||||||
|
|
||||||
end function s_map_sizeof
|
|
||||||
|
|
||||||
function d_map_sizeof(map) result(val)
|
|
||||||
use psb_descriptor_type
|
|
||||||
use psb_d_mat_mod
|
|
||||||
implicit none
|
|
||||||
class(psb_dlinmap_type), intent(in) :: map
|
|
||||||
integer(psb_long_int_k_) :: val
|
|
||||||
|
|
||||||
val = 0
|
|
||||||
if (allocated(map%itd_data)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%itd_data)
|
|
||||||
if (allocated(map%iaggr)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%iaggr)
|
|
||||||
if (allocated(map%naggr)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%naggr)
|
|
||||||
val = val + map%desc_X%sizeof()
|
|
||||||
val = val + map%desc_Y%sizeof()
|
|
||||||
val = val + map%map_X2Y%sizeof()
|
|
||||||
val = val + map%map_Y2X%sizeof()
|
|
||||||
|
|
||||||
end function d_map_sizeof
|
|
||||||
|
|
||||||
function c_map_sizeof(map) result(val)
|
|
||||||
use psb_descriptor_type
|
|
||||||
use psb_c_mat_mod
|
|
||||||
implicit none
|
|
||||||
class(psb_clinmap_type), intent(in) :: map
|
|
||||||
integer(psb_long_int_k_) :: val
|
|
||||||
|
|
||||||
val = 0
|
|
||||||
if (allocated(map%itd_data)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%itd_data)
|
|
||||||
if (allocated(map%iaggr)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%iaggr)
|
|
||||||
if (allocated(map%naggr)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%naggr)
|
|
||||||
val = val + map%desc_X%sizeof()
|
|
||||||
val = val + map%desc_Y%sizeof()
|
|
||||||
val = val + map%map_X2Y%sizeof()
|
|
||||||
val = val + map%map_Y2X%sizeof()
|
|
||||||
|
|
||||||
end function c_map_sizeof
|
|
||||||
|
|
||||||
function z_map_sizeof(map) result(val)
|
|
||||||
use psb_descriptor_type
|
|
||||||
use psb_z_mat_mod
|
|
||||||
implicit none
|
|
||||||
class(psb_zlinmap_type), intent(in) :: map
|
|
||||||
integer(psb_long_int_k_) :: val
|
|
||||||
|
|
||||||
val = 0
|
|
||||||
if (allocated(map%itd_data)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%itd_data)
|
|
||||||
if (allocated(map%iaggr)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%iaggr)
|
|
||||||
if (allocated(map%naggr)) &
|
|
||||||
& val = val + psb_sizeof_int*size(map%naggr)
|
|
||||||
val = val + map%desc_X%sizeof()
|
|
||||||
val = val + map%desc_Y%sizeof()
|
|
||||||
val = val + map%map_X2Y%sizeof()
|
|
||||||
val = val + map%map_Y2X%sizeof()
|
|
||||||
|
|
||||||
end function z_map_sizeof
|
|
||||||
|
|
||||||
end module psb_linmap_type_mod
|
|
||||||
|
|
Loading…
Reference in New Issue