Renamed pargen sample.

psblas3-type-indexed
Salvatore Filippone 17 years ago
parent ee61f08f55
commit 7a03e1d410

@ -29,8 +29,8 @@ The library has been tested on an IBM SP5, with XLC and XLF
version 10.1 and the IBM ESSL/PESSL versions of the BLAS and the version 10.1 and the IBM ESSL/PESSL versions of the BLAS and the
BLACS. BLACS.
The setting The setting
F90=xlf90 -qsuffix=f=f90 F90=xlf95 -qsuffix=f=f90:cpp=F90
in Make.inc.sp5 takes care of the f90 extension. in Make.inc.sp5 takes care of the f90/F90 extensions.
UTILITIES UTILITIES
@ -41,7 +41,7 @@ Harwell-Boeing and MatrixMarket file formats.
DOCUMENTATION DOCUMENTATION
See userguide.pdf See userguide.pdf
Please consult the sample programs, especially test/pargen/ppde90.f90. Please consult the sample programs, especially test/pargen/ppde.f90.
OTHER SOFTWARE CREDITS OTHER SOFTWARE CREDITS

@ -15,22 +15,16 @@ FINCLUDES=$(FMFLAG)$(LIBDIR) $(FMFLAG).
EXEDIR=./runs EXEDIR=./runs
ppde90: ppde90.o ppde: ppde.o
$(F90LINK) ppde90.o -o ppde90 $(PSBLAS_LIB) $(LDLIBS) $(F90LINK) ppde.o -o ppde $(PSBLAS_LIB) $(LDLIBS)
/bin/mv ppde90 $(EXEDIR) /bin/mv ppde $(EXEDIR)
thsrt: thsrt.o
$(F90LINK) thsrt.o -o thsrt $(PSBLAS_LIB) $(LDLIBS)
/bin/mv thsrt $(EXEDIR)
.f90.o: .f90.o:
$(MPF90) $(F90COPT) $(FINCLUDES) $(FDEFINES) -c $< $(MPF90) $(F90COPT) $(FINCLUDES) $(FDEFINES) -c $<
clean: clean:
/bin/rm -f ppde90.o $(EXEDIR)/ppde90 /bin/rm -f ppde.o $(EXEDIR)/ppde
verycleanlib: verycleanlib:
(cd ../..; make veryclean) (cd ../..; make veryclean)
lib: lib:

@ -28,9 +28,9 @@
!!$ POSSIBILITY OF SUCH DAMAGE. !!$ POSSIBILITY OF SUCH DAMAGE.
!!$ !!$
!!$ !!$
! File: ppde90.f90 ! File: ppde.f90
! !
! Program: ppde90 ! Program: ppde
! This sample program shows how to build and solve a sparse linear ! This sample program shows how to build and solve a sparse linear
! !
! The program solves a linear system based on the partial differential ! The program solves a linear system based on the partial differential
@ -70,7 +70,7 @@
! !
! u(x,y) = rhs(x,y) ! u(x,y) = rhs(x,y)
! !
program pde90 program ppde
use psb_base_mod use psb_base_mod
use psb_prec_mod use psb_prec_mod
use psb_krylov_mod use psb_krylov_mod
@ -622,7 +622,7 @@ contains
end if end if
return return
end subroutine create_matrix end subroutine create_matrix
end program pde90 end program ppde
! !
! functions parametrizing the differential equation ! functions parametrizing the differential equation
! !
Loading…
Cancel
Save