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

modified Gram-Schmit #149

Merged
merged 18 commits into from
May 13, 2019
Merged
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
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ pub mod generate;
pub mod inner;
pub mod lapack;
pub mod layout;
pub mod mgs;
pub mod norm;
pub mod operator;
pub mod opnorm;
Expand Down
187 changes: 187 additions & 0 deletions src/mgs.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
//! Modified Gram-Schmit orthogonalizer

use crate::{generate::*, inner::*, norm::Norm, types::*};
use ndarray::*;

/// Iterative orthogonalizer using modified Gram-Schmit procedure
#[derive(Debug, Clone)]
pub struct MGS<A> {
/// Dimension of base space
dimension: usize,
/// Basis of spanned space
q: Vec<Array1<A>>,
}

/// Q-matrix
///
/// - Maybe **NOT** square
/// - Unitary for existing columns
///
pub type Q<A> = Array2<A>;

/// R-matrix
///
/// - Maybe **NOT** square
/// - Upper triangle
///
pub type R<A> = Array2<A>;

impl<A: Scalar> MGS<A> {
/// Create an empty orthogonalizer
pub fn new(dimension: usize) -> Self {
Self {
dimension,
q: Vec::new(),
}
}

/// Dimension of input array
pub fn dim(&self) -> usize {
self.dimension
}

/// Number of cached basis
///
/// ```rust
/// # use ndarray::*;
/// # use ndarray_linalg::{mgs::*, *};
/// const N: usize = 3;
/// let mut mgs = MGS::<f32>::new(N);
/// assert_eq!(mgs.dim(), N);
/// assert_eq!(mgs.len(), 0);
///
/// mgs.append(array![0.0, 1.0, 0.0], 1e-9).unwrap();
/// assert_eq!(mgs.len(), 1);
/// ```
pub fn len(&self) -> usize {
self.q.len()
}

/// Orthogonalize given vector using current basis
///
/// Panic
/// -------
/// - if the size of the input array mismatches to the dimension
///
pub fn orthogonalize<S>(&self, a: &mut ArrayBase<S, Ix1>) -> Array1<A>
where
A: Lapack,
S: DataMut<Elem = A>,
{
assert_eq!(a.len(), self.dim());
let mut coef = Array1::zeros(self.len() + 1);
for i in 0..self.len() {
let q = &self.q[i];
let c = q.inner(&a);
azip!(mut a (&mut *a), q (q) in { *a = *a - c * q } );
coef[i] = c;
}
let nrm = a.norm_l2();
coef[self.len()] = A::from_real(nrm);
coef
}

/// Add new vector if the residual is larger than relative tolerance
///
/// ```rust
/// # use ndarray::*;
/// # use ndarray_linalg::{mgs::*, *};
/// let mut mgs = MGS::new(3);
/// let coef = mgs.append(array![0.0, 1.0, 0.0], 1e-9).unwrap();
/// close_l2(&coef, &array![1.0], 1e-9);
///
/// let coef = mgs.append(array![1.0, 1.0, 0.0], 1e-9).unwrap();
/// close_l2(&coef, &array![1.0, 1.0], 1e-9);
///
/// // Fail if the vector is linearly dependent
/// assert!(mgs.append(array![1.0, 2.0, 0.0], 1e-9).is_err());
///
/// // You can get coefficients of dependent vector
/// if let Err(coef) = mgs.append(array![1.0, 2.0, 0.0], 1e-9) {
/// close_l2(&coef, &array![2.0, 1.0, 0.0], 1e-9);
/// }
/// ```
///
/// Panic
/// -------
/// - if the size of the input array mismatches to the dimension
///
pub fn append<S>(&mut self, a: ArrayBase<S, Ix1>, rtol: A::Real) -> Result<Array1<A>, Array1<A>>
where
A: Lapack,
S: Data<Elem = A>,
{
let mut a = a.into_owned();
let coef = self.orthogonalize(&mut a);
let nrm = coef[coef.len() - 1].re();
if nrm < rtol {
// Linearly dependent
return Err(coef);
}
azip!(mut a in { *a = *a / A::from_real(nrm) });
self.q.push(a);
Ok(coef)
}

/// Get orthogonal basis as Q matrix
pub fn get_q(&self) -> Q<A> {
hstack(&self.q).unwrap()
}
}

/// Strategy for linearly dependent vectors appearing in iterative QR decomposition
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Strategy {
/// Terminate iteration if dependent vector comes
Terminate,

/// Skip dependent vector
Skip,

/// Orthogonalize dependent vector without adding to Q,
/// i.e. R must be non-square like following:
///
/// ```text
/// x x x x x
/// 0 x x x x
/// 0 0 0 x x
/// 0 0 0 0 x
/// ```
Full,
}

/// Online QR decomposition of vectors using modified Gram-Schmit algorithm
pub fn mgs<A, S>(
iter: impl Iterator<Item = ArrayBase<S, Ix1>>,
dim: usize,
rtol: A::Real,
strategy: Strategy,
) -> (Q<A>, R<A>)
where
A: Scalar + Lapack,
S: Data<Elem = A>,
{
let mut ortho = MGS::new(dim);
let mut coefs = Vec::new();
for a in iter {
match ortho.append(a, rtol) {
Ok(coef) => coefs.push(coef),
Err(coef) => match strategy {
Strategy::Terminate => break,
Strategy::Skip => continue,
Strategy::Full => coefs.push(coef),
},
}
}
let n = ortho.len();
let m = coefs.len();
let mut r = Array2::zeros((n, m).f());
for j in 0..m {
for i in 0..n {
if i < coefs[j].len() {
r[(i, j)] = coefs[j][i];
}
}
}
(ortho.get_q(), r)
}
83 changes: 83 additions & 0 deletions tests/mgs.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
use ndarray::*;
use ndarray_linalg::{mgs::*, *};

fn qr_full<A: Scalar + Lapack>() {
const N: usize = 5;
let rtol: A::Real = A::real(1e-9);

let a: Array2<A> = random((N, N));
let (q, r) = mgs(a.axis_iter(Axis(1)), N, rtol, Strategy::Terminate);
assert_close_l2!(&q.dot(&r), &a, rtol);

let qc: Array2<A> = conjugate(&q);
assert_close_l2!(&qc.dot(&q), &Array::eye(N), rtol);
}

#[test]
fn qr_full_real() {
qr_full::<f64>();
}

#[test]
fn qr_full_complex() {
qr_full::<c64>();
}

fn qr<A: Scalar + Lapack>() {
const N: usize = 4;
let rtol: A::Real = A::real(1e-9);

let a: Array2<A> = random((N, N / 2));
let (q, r) = mgs(a.axis_iter(Axis(1)), N, rtol, Strategy::Terminate);
assert_close_l2!(&q.dot(&r), &a, rtol);

let qc: Array2<A> = conjugate(&q);
assert_close_l2!(&qc.dot(&q), &Array::eye(N / 2), rtol);
}

#[test]
fn qr_real() {
qr::<f64>();
}

#[test]
fn qr_complex() {
qr::<c64>();
}

fn qr_over<A: Scalar + Lapack>() {
const N: usize = 4;
let rtol: A::Real = A::real(1e-9);

let a: Array2<A> = random((N, N * 2));

// Terminate
let (q, r) = mgs(a.axis_iter(Axis(1)), N, rtol, Strategy::Terminate);
let a_sub = a.slice(s![.., 0..N]);
assert_close_l2!(&q.dot(&r), &a_sub, rtol);
let qc: Array2<A> = conjugate(&q);
assert_close_l2!(&qc.dot(&q), &Array::eye(N), rtol);

// Skip
let (q, r) = mgs(a.axis_iter(Axis(1)), N, rtol, Strategy::Skip);
let a_sub = a.slice(s![.., 0..N]);
assert_close_l2!(&q.dot(&r), &a_sub, rtol);
let qc: Array2<A> = conjugate(&q);
assert_close_l2!(&qc.dot(&q), &Array::eye(N), rtol);

// Full
let (q, r) = mgs(a.axis_iter(Axis(1)), N, rtol, Strategy::Full);
assert_close_l2!(&q.dot(&r), &a, rtol);
let qc: Array2<A> = conjugate(&q);
assert_close_l2!(&qc.dot(&q), &Array::eye(N), rtol);
}

#[test]
fn qr_over_real() {
qr_over::<f64>();
}

#[test]
fn qr_over_complex() {
qr_over::<c64>();
}