psblas2/base/psblas:

psb_dspmm.f90
 psb_zspmm.f90


Fixed stupid bug with multiple X/Y columns.
psblas3-type-indexed
Salvatore Filippone 17 years ago
parent 7a1cebcfd9
commit f6e024c709

@ -249,8 +249,8 @@ subroutine psb_dspmm(alpha,a,x,beta,y,desc_a,info,&
if(info /= 0) exit blk
! local Matrix-vector product
call psb_csmm(alpha,a,x(iix:lldx,jjx:jjx+ib-1),&
& beta,y(iiy:lldy,jjy:jjy+ib-1),info,trans=trans_)
call psb_csmm(alpha,a,x(:,jjx+i-1:jjx+i+ib-1),&
& beta,y(:,jjy+i-1:jjy+i+ib-1),info,trans=trans_)
if(info /= 0) exit blk

@ -249,8 +249,8 @@ subroutine psb_zspmm(alpha,a,x,beta,y,desc_a,info,&
if(info /= 0) exit blk
! local Matrix-vector product
call psb_csmm(alpha,a,x(iix:lldx,jjx:jjx+ib-1),&
& beta,y(iiy:lldy,jjy:jjy+ib-1),info,trans=trans_)
call psb_csmm(alpha,a,x(:,jjx+i-1:jjx+i+ib-1),&
& beta,y(:,jjy+i-1:jjy+i+ib-1),info,trans=trans_)
if(info /= 0) exit blk

Loading…
Cancel
Save