Fixed two write statements in pargen
psblas3-type-indexed
Salvatore Filippone 15 years ago
parent d724c14b5a
commit e307e0a22e

@ -133,7 +133,7 @@ program ppde
! !
! prepare the preconditioner. ! prepare the preconditioner.
! !
if(iam == psb_root_) write(0,'("Setting preconditioner to : ",a)')ptype if(iam == psb_root_) write(*,'("Setting preconditioner to : ",a)')ptype
call psb_precinit(prec,ptype,info) call psb_precinit(prec,ptype,info)
call psb_barrier(ictxt) call psb_barrier(ictxt)
@ -385,7 +385,7 @@ contains
m = idim*idim*idim m = idim*idim*idim
n = m n = m
nnz = ((n*9)/(np)) nnz = ((n*9)/(np))
if(iam == psb_root_) write(0,'("Generating Matrix (size=",i0,")...")')n if(iam == psb_root_) write(*,'("Generating Matrix (size=",i0,")...")')n
! !
! Using a simple BLOCK distribution. ! Using a simple BLOCK distribution.

@ -133,7 +133,7 @@ program ppde
! !
! prepare the preconditioner. ! prepare the preconditioner.
! !
if(iam == psb_root_) write(0,'("Setting preconditioner to : ",a)')ptype if(iam == psb_root_) write(*,'("Setting preconditioner to : ",a)')ptype
call psb_precinit(prec,ptype,info) call psb_precinit(prec,ptype,info)
call psb_barrier(ictxt) call psb_barrier(ictxt)
@ -383,7 +383,7 @@ contains
m = idim*idim*idim m = idim*idim*idim
n = m n = m
nnz = ((n*9)/(np)) nnz = ((n*9)/(np))
if(iam == psb_root_) write(0,'("Generating Matrix (size=",i0,")...")')n if(iam == psb_root_) write(*,'("Generating Matrix (size=",i0,")...")')n
! !
! Using a simple BLOCK distribution. ! Using a simple BLOCK distribution.

Loading…
Cancel
Save