irlba
A C++ library for IRLBA
|
This repository contains a header-only C++ library implementing the Augmented Implicitly Restarted Lanczos Bidiagonalization Algorithm (IRLBA) from Baglama and Reichel (2005). IRLBA is a fast and memory-efficient method for truncated singular value decomposition, and is particularly useful for approximate principal components analysis of large matrices. The code here is derived from the C code in the irlba R package, refactored to use the Eigen library for matrix algebra.
Using this library is as simple as including the header file in your source code:
To perform a PCA:
See the reference documentation for more details.
FetchContent
If you're using CMake, you just need to add something like this to your CMakeLists.txt
:
Then you can link to irlba to make the headers available during compilation:
find_package()
To install the library use:
By default, this will use FetchContent
to fetch all external dependencies. If you want to install them manually, use -DPOWERIT_FETCH_EXTERN=OFF
. See the commit hashes in extern/CMakeLists.txt
to find compatible versions of each dependency.
If you're not using CMake, the simple approach is to just copy the files - either directly or with Git submodules - and include their path during compilation with, e.g., GCC's -I
. Note that this requires manual management of a few dependencies:
See extern/CMakeLists.txt
for more details.
Baglama, James and Reichel, Lothar (2005). Augmented implicitly restarted Lanczos bidiagonalization methods. SIAM J. Sci. Comput., 27(1), 19-42.