ARPACK-NG is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.
mandatory dependencies | optional dependencies | category |
---|---|---|
BLAS, LAPACK | MPI, Eigen3, Boost.Python | LinearAlgebra |
This project started as a joint project between Debian, Octave and Scilab in order to provide a common and maintained version of arpack.
This is now a community project maintained by a few volunteers.
Indeed, no single release has been published by Rice university for the last few years and since many software (Octave, Scilab, R, Matlab...)
forked it and implemented their own modifications, arpack-ng aims to tackle this by providing a common repository, maintained versions with a testsuite.
arpack-ng
is replacing arpack almost everywhere.
- Reverse Communication Interface (RCI).
- Single and Double Precision Real Arithmetic Versions for Symmetric, Non-symmetric, Standard or Generalized Problems.
- Single and Double Precision Complex Arithmetic Versions for Standard or Generalized Problems.
- Routines for Banded Matrices - Standard or Generalized Problems.
- Routines for The Singular Value Decomposition.
- Example driver routines that may be used as templates to implement numerous
- Shift-Invert strategies for all problem types, data types and precision.
arpackmm
: utility to test arpack with matrix market files. Note: to run this utility, you need the eigen library (to handle RCI).
Within DOCUMENTS directory there are three files for templates on how to invoke the computational modes of ARPACK.
- ex-sym.doc
- ex-nonsym.doc and
- ex-complex.doc
Also look in the README.MD file for explanations concerning the other documents.
About ILP64 support:
- Sequential arpack supports ILP64, but, parallel arpack doesn't.
- Reminder: you can NOT mix
ILP64
withLP64
. If you compilearpack-ng
withILP64
(resp.LP64
) support, you MUST insure your BLAS/LAPACK is compliant withILP64
(resp.LP64
). - Set
INTERFACE64
at configure time. - As this can not be automated, you need to make sure that the BLAS/LAPACK libraries you pass to
arpack-ng
:- Are built with ILP64 support.
In case these ILP64 BLAS/LAPACK libraries have a non-usual name, you must specify them like so:
>> ./configure --with-blas=openblas64_ ...
- Do export ILP64-flavored symbols. In case these symbols have a non-usual name, you must:
- Check for ILP64 symbols exported by the ILP64 BLAS/LAPACK libraries:
>> nm /path/to/libopenblas64_.so | grep scopy64_ 0000000000000000 T scopy64_
- Specify them to
arpack-ng
usingSYMBOLSUFFIX
:FFLAGS used by>> SYMBOLSUFFIX=64_ ./configure ... ... Configuration summary for ARPACK-NG ... FFLAGS : -fdefault-integer-8 -Dscopy=scopy64_ ...
arpack-ng
(built fromSYMBOLSUFFIX
- reported in configure log) must redirect the usual symbols to the non-usual ones exported by the ILP64 BLAS/LAPACK libraries: this check is the responsability of the user.
- Check for ILP64 symbols exported by the ILP64 BLAS/LAPACK libraries:
- Are built with ILP64 support.
In case these ILP64 BLAS/LAPACK libraries have a non-usual name, you must specify them like so:
Note for F77/F90 developers:
- All files which needs
ILP64
support must include"arpackicb.h"
. - When coding, use
i_int
(defined inarpackicb.h
) instead ofc_int
.i_int
stands for ISO_C_BINDING integer: it's#defined
toc_int
orc_int64_t
according to the architecture.
Note for C/C++ developers:
- All files which needs
ILP64
support must include"arpackdef.h"
. - When coding, use
a_int
(defined inarpackdef.h
) instead ofint
. Here,a_int
stands for "architecture int": it's#defined
toint
orint64_t
according to the architecture.
Example: to test arpack with sequential ILP64
MKL assuming you use gnu compilers
$ ./bootstrap
$ export FFLAGS='-DMKL_ILP64 -I/usr/include/mkl'
$ export FCFLAGS='-DMKL_ILP64 -I/usr/include/mkl'
$ export LIBS='-Wl,--no-as-needed -L/usr/lib/x86_64-linux-gnu -lmkl_sequential -lmkl_core -lpthread -lm -ldl'
$ export INTERFACE64=1
$ ./configure --with-blas=mkl_gf_ilp64 --with-lapack=mkl_gf_ilp64
$ make all check
About ISO_C_BINDING support:
- The install will now provide
arpack.h/hpp
,parpack.h/hpp
and friends. - Examples of use can be found in
./TESTS
and./PARPACK/TESTS/MPI
.
ISO_C_BINDING is a feature of modern Fortran meant to handle safely interoperability between Fortran and C (in practice, no more need to use ugly tricks to link F77 functions to C code using "underscored" symbols). Basically, ISO_C_BINDING make sure all fortran variables are typed (which may not always be the case when using implicit
keyword in fortran): this way, C compilers can link properly. For more informations on ISO_C_BINDING, you can checkout the following links:
- http://fortranwiki.org/fortran/show/ISO_C_BINDING
- http://fortranwiki.org/fortran/show/Generating+C+Interfaces
Using ICB is seamless:
- Compile
arpack-ng
with ISO_C_BINDING: you'll get both old-fashion fortran symbols and new ISO_C_BINDING symbols available for linking. - Add
#include "arpack.h"
in your C code. - Replace all [sdcz][ae]upd calls by [sdcz][ae]upd_c: functions suffixed with _c are ISO_C_BINDING compliant (exposing same arguments than original fortran functions).
Example: to test arpack with ISO_C_BINDING
$ ./configure --enable-icb
$ cmake -D ICB=ON
arpack-ng
provides C++ eigensolver based on both ISO_C_BINDING and eigen
.
Check out ./EXAMPLES/MATRIX_MARKET/README
for more details.
Example: to test arpack with eigen
$ mkdir build
$ cd build
$ cmake -D EXAMPLES=ON -D ICB=ON -D EIGEN=ON ..
$ make all check
pyarpack
: python support based on Boost.Python.Numpy
exposing C++ API.
pyarpack
exposes in python the arpack-ng
C++ eigensolver (based on eigen
).
Check out ./EXAMPLES/PYARPACK/README
for more details.
Example: to test arpack with python3
$ mkdir build
$ cd build
$ cmake -D EXAMPLES=ON -D ICB=ON -D EIGEN=ON -D PYTHON3=ON ..
$ make all check
-
You have successfully unbundled ARPACK-NG` and are now in the ARPACK-NG directory that was created for you.
-
The directory SRC contains the top level routines including the highest level reverse communication interface routines
ssaupd
,dsaupd
: symmetric single and double precisionsnaupd
,dnaupd
: non-symmetric single and double precisioncnaupd
,znaupd
: complex non-symmetric single and double precision- The headers of these routines contain full documentation of calling sequence and usage.
- Additional information is given in the
/DOCUMENTS
directory.
-
The directory
PARPACK
contains the Parallel ARPACK routines. -
Example driver programs that illustrate all the computational modes, data types and precisions may be found in the EXAMPLES directory. Upon executing the
ls EXAMPLES
command you should see the following directories├── BAND ├── COMPLEX ├── Makefile.am ├── MATRIX_MARKET ├── NONSYM ├── PYARPACK ├── README ├── SIMPLE ├── SVD └── SYM
- Example programs for banded, complex, nonsymmetric, symmetric, and singular value decomposition may be found in the directories BAND, COMPLEX, NONSYM, SYM, SVD respectively.
- Look at the README file for further information.
- To get started, get into the SIMPLE directory to see example programs that illustrate the use of ARPACK in the simplest modes of operation for the most commonly posed standard eigenvalue problems.
Example programs for Parallel ARPACK may be found in the directory
PARPACK/EXAMPLES
. Look at the README file for further information.
Unlike ARPACK, ARPACK-NG is providing autotools and cmake based build system. In addition, ARPACK-NG
also provides
ISO_C_BINDING support, which enables to call fortran subroutines natively from C or C++.
First, obtain the source code 📥 from github:
$ git clone https://github.com/opencollab/arpack-ng.git
$ cd ./arpack-ng
If you prefer the ssh to obtain the source code, then use:
$ git clone [email protected]:opencollab/arpack-ng.git
$ cd ./arpack-ng
Note, It is recommended to install
arpack
at standard location on your system by using your root privilege.
In the source directory, use the following commands to configure, build and install arpack-ng
.
$ sh bootstrap
$ ./configure --enable-mpi
$ make
$ make check
$ sudo make install
Congratulations 🎉, you have installed arpack
lib using autotools (caution: you need sudo
to install in your system).
The above-mentioned process will build everything including the examples and parallel support using MPI.
You can install ARPACK-NG
by using cmake. If you do not have cmake, then please download the binary from pip
using:
$ python3 -m pip install cmake
$ which cmake && cmake --version
After installing cmake, follow the instruction given below.
Caution: Make sure you are in source directory of ARPACK-NG.
$ mkdir build
$ cd build
$ cmake -D EXAMPLES=ON -D MPI=ON -D BUILD_SHARED_LIBS=ON ..
$ make
$ sudo make install
✨ Congratulations, you have installed arpack
lib using cmake (caution: you need sudo
to install in your system).
The above-mentioned process will build everything including the examples and parallel support using MPI.
You can also customize the installation of arpack
using the autotools.
To customize the install directories:
$ LIBSUFFIX="64" ./configure
$ make all install
To enable ILP64 support:
$ INTERFACE64="1" ITF64SUFFIX="ILP64" ./configure
$ make all install
To enable ISO_C_BINDING support:
$ ./configure --enable-icb
You can customize the build by declaring the cmake options during configuration.
To customize the install directories:
$ cmake -D LIBSUFFIX="64" ..
$ make all install
To enable ILP64 support:
$ cmake -D INTERFACE64=ON -D ITF64SUFFIX="ILP64" ..
$ make all install
To enable ISO_C_BINDING support:
$ cmake -D ICB=ON
arpack-ng
runs on debian-based distros.
On mac OS, with GNU compilers, you may need to customize options:
$ LIBS="-framework Accelerate" FFLAGS="-ff2c -fno-second-underscore" FCFLAGS="-ff2c -fno-second-underscore" ./configure
arpack-ng
can be installed on Windows as a MinGW-w64 package via various distribution, for example through MSYS2 with pacman -S mingw-w64-x86_64-arpack
. It can also be built and installed through vcpkg with vcpkg install arpack-ng
.
The *.pc
and *.cmake
files provided by arpack-ng
are only pointing to arpack libraries.
If you need other libraries (like MPI), you must add them alongside arpack (see CMake example below).
Typically, if you need
-
ARPACK: at compile/link time, you'll need to provide BLAS and LAPACK.
-
ARPACK with eigen support (arpackSolver): at compile/link time, you'll need to provide BLAS, LAPACK and Eigen.
-
PARPACK: at compile/link time, you'll need to provide BLAS, LAPACK and MPI.
Examples are provided in tstCMakeInstall.sh
and tstAutotoolsInstall.sh
generated after running cmake/configure.
First, set PKG_CONFIG_PATH
to the location in the installation directory where arpack.pc
lies.
Then, insert the following lines in your configure.ac
:
PKG_CHECK_MODULES([ARPACK], [arpack])
AC_SUBST([ARPACK_CFLAGS])
AC_SUBST([ARPACK_LIBS])
Note: make sure you have installed pkg-config
.
You can use arpack in your CMake builds by using ARPACK::ARPACK
target. For example,
FIND_PACKAGE(arpackng)
ADD_EXECUTABLE(main main.f)
TARGET_INCLUDE_DIRECTORIES(main PUBLIC ARPACK::ARPACK)
TARGET_LINK_LIBRARIES(main ARPACK::ARPACK)
To use PARPACK in your Cmake builds, use PARPACK::PARPACK
target:
FIND_PACKAGE(arpackng)
FIND_PACKAGE(MPI REQUIRED COMPONENTS Fortran)
ADD_EXECUTABLE(main main.f)
TARGET_INCLUDE_DIRECTORIES(main PUBLIC PARPACK::PARPACK)
TARGET_LINK_LIBRARIES(main PARPACK::PARPACK)
TARGET_INCLUDE_DIRECTORIES(main PUBLIC MPI::MPI_Fortran)
TARGET_LINK_LIBRARIES(main MPI::MPI_Fortran)
Note: Make sure to update CMAKE_MODULE_PATH
env variable (otheriwse, find_package
won't find arpack-ng cmake file).
-
Where can I find ARPACK user's guide?
-
Calling arpack's aupd methods returns
info = -9 - Starting vector is zero.
: why?Residuals are null. Try to set
resid
to small values (like epsilon machine magnitude) but not exactly zero. Residualsresid = A*v - lamdba*v
target exactly the zero vector. Whenresid
is close enough to zero, the iterative procedure stops. -
Say I have an estimate of an eigen value, how to give this information to arpack?
You need to shift of an amount of about this estimate of
lambda
. GrepbackTransform
inarpackSolver.hpp
to see an example. For more informations, checkout "NUMERICAL METHODS FOR LARGE EIGENVALUE PROBLEMS" by Yousef Saad: https://www-users.cse.umn.edu/~saad/eig_book_2ndEd.pdf (paragraph 4.1.2. and section 4.1.). -
Say I have an estimate of an eigen vector, how to give this information to arpack?
You need to copy this eigen vector estimate in
v
(notresid
) and setinfo
to 1 before calling aupd methods. Thev
vector targets a non-null vector such thatresid = 0
, that is, such thatA*v = lambda*v
. -
Using PARPACK, I get incorrect eigen values.
Make sure each MPI processor handles a subpart of the eigen system (matrices) only. ARPACK handles and solves the whole eigen problem (matrices) at once. PARPACK doesn't: each MPI processor must handle and solve a subpart of the eigen system (matrices) only (independently from the other processors). See examples for Fortran in folder
PARPACK/EXAMPLES/MPI
, and for C/C++ examples inPARPACK/TESTS/MPI/icb_parpack_c.c
andPARPACK/TESTS/MPI/icb_parpack_cpp.cpp
How to use arpack-ng with Intel MKL:
- Let autotools/cmake find MKL for you based on pkg-config files (setting
PKG_CONFIG_PATH
) or cmake options (BLA_VENDOR=Intel10_64lp
for lp64,BLA_VENDOR=Intel10_64ilp
for ilp64). - Refers to the Intel Link Advisor: https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl-link-line-advisor.html.