Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cholesky factorization of PSD matrices #257

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions src/cholesky.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ use num_traits::Float;

use crate::convert::*;
use crate::error::*;
use crate::lapack::cholesky_semi::cholesky_semi;
use crate::layout::*;
use crate::triangular::IntoTriangular;
use crate::types::*;
Expand Down Expand Up @@ -468,3 +469,32 @@ where
Ok(self.factorizec_into(UPLO::Upper)?.ln_detc_into())
}
}

pub struct PsdCholeskyFactorization {
pub pivot: Vec<usize>,
pub positive_definite_factorization: CholeskyFactorized<OwnedRepr<f64>>,
}

pub fn factorize_cholesky_semi_definite(
input_mat: &mut ArrayBase<OwnedRepr<f64>, Ix2>,
) -> Result<PsdCholeskyFactorization> {
let uplo = UPLO::Lower;
let mut rank: i32 = 0;
let pivot: Vec<usize> = cholesky_semi(
input_mat.square_layout()?,
uplo,
input_mat.as_allocated_mut()?,
&mut rank,
)?
.iter()
.map(|x| *x as usize)
.collect();
let cholesky_factors = input_mat.into_triangular(uplo).slice(s![0..rank, 0..rank]);
Ok(PsdCholeskyFactorization {
pivot: pivot,
positive_definite_factorization: CholeskyFactorized::<OwnedRepr<f64>> {
factor: replicate(&cholesky_factors),
uplo: uplo,
},
})
}
25 changes: 25 additions & 0 deletions src/lapack/cholesky_semi.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
use super::*;
use crate::{error::*, layout::*};

pub fn cholesky_semi(l: MatrixLayout, uplo: UPLO, a: &mut [f64], rank: &mut i32) -> Result<Vec<i32>> {
let (n, _) = l.size();
let mut ipiv = vec![0; n as usize];
let tol = 1.0e-12_f64;
let info = unsafe {
lapacke::dpstrf(
l.lapacke_layout(),
uplo as u8,
n,
a,
l.lda(),
&mut ipiv,
rank,
tol,
)
};
if info < 0 {
Err(LinalgError::Lapack { return_code: info })
} else {
Ok(ipiv)
}
}
2 changes: 2 additions & 0 deletions src/lapack/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! Define traits wrapping LAPACK routines

pub mod cholesky;
pub mod cholesky_semi;
pub mod eig;
pub mod eigh;
pub mod least_squares;
Expand All @@ -14,6 +15,7 @@ pub mod triangular;
pub mod tridiagonal;

pub use self::cholesky::*;
pub use self::cholesky_semi::*;
pub use self::eig::*;
pub use self::eigh::*;
pub use self::least_squares::*;
Expand Down