Fix use of psi_Xaxpby

repackage
sfilippone 2 weeks ago
parent a527493258
commit 6772315d4d

@ -299,7 +299,7 @@ end subroutine psb_caxpby_vect_out
!
subroutine psb_caxpby(alpha, x, beta,y,desc_a,info, n, jx, jy)
use psb_base_mod, psb_protect_name => psb_caxpby
use psi_c_serial_mod
implicit none
integer(psb_ipk_), intent(in), optional :: n, jx, jy
@ -384,7 +384,7 @@ subroutine psb_caxpby(alpha, x, beta,y,desc_a,info, n, jx, jy)
if ((in /= 0)) then
if(desc_a%get_local_rows() > 0) then
call pab_geaxpby(desc_a%get_local_cols(),in,&
call psi_caxpby(desc_a%get_local_cols(),in,&
& alpha,x(iix:,jjx:),beta,&
& y(iiy:,jjy:),info)
end if

@ -299,7 +299,7 @@ end subroutine psb_daxpby_vect_out
!
subroutine psb_daxpby(alpha, x, beta,y,desc_a,info, n, jx, jy)
use psb_base_mod, psb_protect_name => psb_daxpby
use psi_d_serial_mod
implicit none
integer(psb_ipk_), intent(in), optional :: n, jx, jy
@ -384,7 +384,7 @@ subroutine psb_daxpby(alpha, x, beta,y,desc_a,info, n, jx, jy)
if ((in /= 0)) then
if(desc_a%get_local_rows() > 0) then
call pab_geaxpby(desc_a%get_local_cols(),in,&
call psi_daxpby(desc_a%get_local_cols(),in,&
& alpha,x(iix:,jjx:),beta,&
& y(iiy:,jjy:),info)
end if

@ -299,7 +299,7 @@ end subroutine psb_saxpby_vect_out
!
subroutine psb_saxpby(alpha, x, beta,y,desc_a,info, n, jx, jy)
use psb_base_mod, psb_protect_name => psb_saxpby
use psi_s_serial_mod
implicit none
integer(psb_ipk_), intent(in), optional :: n, jx, jy
@ -384,7 +384,7 @@ subroutine psb_saxpby(alpha, x, beta,y,desc_a,info, n, jx, jy)
if ((in /= 0)) then
if(desc_a%get_local_rows() > 0) then
call pab_geaxpby(desc_a%get_local_cols(),in,&
call psi_saxpby(desc_a%get_local_cols(),in,&
& alpha,x(iix:,jjx:),beta,&
& y(iiy:,jjy:),info)
end if

@ -299,7 +299,7 @@ end subroutine psb_zaxpby_vect_out
!
subroutine psb_zaxpby(alpha, x, beta,y,desc_a,info, n, jx, jy)
use psb_base_mod, psb_protect_name => psb_zaxpby
use psi_z_serial_mod
implicit none
integer(psb_ipk_), intent(in), optional :: n, jx, jy
@ -384,7 +384,7 @@ subroutine psb_zaxpby(alpha, x, beta,y,desc_a,info, n, jx, jy)
if ((in /= 0)) then
if(desc_a%get_local_rows() > 0) then
call pab_geaxpby(desc_a%get_local_cols(),in,&
call psi_zaxpby(desc_a%get_local_cols(),in,&
& alpha,x(iix:,jjx:),beta,&
& y(iiy:,jjy:),info)
end if

Loading…
Cancel
Save