psb_c_csc_impl.f03
 psb_c_csr_impl.f03
 psb_d_csc_impl.f03
 psb_d_csr_impl.f03
 psb_s_csc_impl.f03
 psb_s_csr_impl.f03
 psb_z_csc_impl.f03
 psb_z_csr_impl.f03

Fixed  missing initialization of debug_unit in some methods.
psblas3-type-indexed
Salvatore Filippone 14 years ago
parent 723200a4e3
commit b4366289ce

@ -2371,6 +2371,9 @@ subroutine psb_c_mv_csc_from_coo(a,b,info)
character(len=20) :: name
info = psb_success_
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
call b%fix(info, idir=1)
if (info /= psb_success_) return

@ -2535,6 +2535,9 @@ subroutine psb_c_mv_csr_from_coo(a,b,info)
character(len=20) :: name
info = psb_success_
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
call b%fix(info)
if (info /= psb_success_) return

@ -2244,6 +2244,9 @@ subroutine psb_d_mv_csc_from_coo(a,b,info)
character(len=20) :: name
info = psb_success_
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
call b%fix(info, idir=1)
if (info /= psb_success_) return

@ -2581,10 +2581,13 @@ subroutine psb_d_mv_csr_from_coo(a,b,info)
logical :: rwshr_
Integer :: nza, nr, i,j,irw, idl,err_act, nc
Integer, Parameter :: maxtry=8
integer :: debug_level, debug_unit
integer :: debug_level, debug_unit
character(len=20) :: name
info = psb_success_
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
call b%fix(info)
if (info /= psb_success_) return

@ -2009,6 +2009,9 @@ subroutine psb_s_mv_csc_from_coo(a,b,info)
character(len=20) :: name
info = psb_success_
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
call b%fix(info, idir=1)
if (info /= psb_success_) return

@ -2343,6 +2343,9 @@ subroutine psb_s_mv_csr_from_coo(a,b,info)
character(len=20) :: name
info = psb_success_
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
call b%fix(info)
if (info /= psb_success_) return

@ -2372,6 +2372,9 @@ subroutine psb_z_mv_csc_from_coo(a,b,info)
character(len=20) :: name
info = psb_success_
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
call b%fix(info, idir=1)
if (info /= psb_success_) return

@ -1,4 +1,5 @@
! == ===================================
!
!
@ -2535,6 +2536,9 @@ subroutine psb_z_mv_csr_from_coo(a,b,info)
character(len=20) :: name
info = psb_success_
debug_unit = psb_get_debug_unit()
debug_level = psb_get_debug_level()
call b%fix(info)
if (info /= psb_success_) return

Loading…
Cancel
Save