The up-to-date source code of this package is available at
Additional information about the package can be found on the web at
In particular, the user's guide is available at
- https://codeforge.lbl.gov/docman/view.php/43/24/nutrlan-ug.pdf
- http://lbl.gov/~kwu/ps/trlan_ug.html.
Further problems/questions, contact
- Ichitaro Yamazaki ([email protected]),
- Kesheng John Wu ([email protected]), or
- Horst D Simon ([email protected]).
Lanczos vectors may not necessarily remain in the Krylov space due to floating-point roundoff. In cases where this is a problem, the user can supply an additional re-orthogonalization routine.
You can use the Makefile in this directory to generate nuTRLan library.
The make file flags are in file Make.inc
. Check the file to make sure
that the options are appropriate for your particular machine.
- You will need a C compiler to compile the main body of the library.
- You will also need interface to LAPACK and BLAS.
There are some examples of Make.inc files
Make.csia
(HP Itanium machine)Make.dmx
(Linux)Make.seaborg
(Nersc IBM SP)
make lib
will build a sequential version of the library,
make plib
will build a MPI version of the library.
nuTRLan calls some BLAS routines. These routines are contained in CBLAS
directory. If BLAS is not installed on the target machine, the user can
use, these unoptimized routines by make pblib
.
The examples
directory contains a small set of examples.
-
Example on how to compute eigenpairs of a symmetric matrix on a serial machine
simple.c
andtest_ctrlan.c
-
Example on how to compute eigenpairs of a symmetric matrix on a distributed memory machine
psimple.c
andtest_ptrlan.c
-
Example on how to compute eigenpairs of a Hermitian matrix on a serial machine
test_ztrlan.c
-
Example on how to compute eigenpairs of a Hermitian matrix on a distributed memory machine
test_pztrlan.c
-
Example on a Fortran interface to compute eigenpairs of a symmetric matrix on a serial machine
simple.f
-
Example on a Fortran interface to compute eigenpairs of a symmetric matrix on a distributed memory machine
psimple.f
-
Example on a Fortran interface to compute eigenpairs of a Hermitian matrix on a serial machine
zsimple.f
-
Example on a Fortran interface to to compute eigenpairs of Hermitian matrix on a parallel machine
pzsimple.f
Debugging MPI is hard. This can be used to attach gdb
to each
process:
mpirun -np 1 xterm -e gdb ./psimple
or one can attach valgrind
:
mpirun -np 1 valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes ./psimple