1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
// Copyright 2014 Michael Yang. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//! Matrix operations.
use crate::attribute::Order;
pub mod ll;
pub mod ops;
/// Methods that allow a type to be used in BLAS functions as a matrix.
pub trait Matrix<T> {
/// The leading dimension of the matrix. Defaults to `cols` for `RowMajor`
/// order and 'rows' for `ColMajor` order.
fn lead_dim(&self) -> u32 {
match self.order() {
Order::RowMajor => self.cols(),
Order::ColMajor => self.rows(),
}
}
/// The order of the matrix. Defaults to `RowMajor`.
fn order(&self) -> Order {
Order::RowMajor
}
/// Returns the number of rows.
fn rows(&self) -> u32;
/// Returns the number of columns.
fn cols(&self) -> u32;
/// An unsafe pointer to a contiguous block of memory.
fn as_ptr(&self) -> *const T;
/// An unsafe pointer to a contiguous block of memory.
fn as_mut_ptr(&mut self) -> *mut T;
}
pub trait BandMatrix<T>: Matrix<T> {
fn sub_diagonals(&self) -> u32;
fn sup_diagonals(&self) -> u32;
fn as_matrix(&self) -> &dyn Matrix<T>;
}
#[cfg(test)]
pub mod tests {
use crate::Matrix;
pub struct M<T>(pub u32, pub u32, pub Vec<T>);
impl<T> Matrix<T> for M<T> {
fn rows(&self) -> u32 {
self.0
}
fn cols(&self) -> u32 {
self.1
}
#[inline]
fn as_ptr(&self) -> *const T {
self.2[..].as_ptr()
}
#[inline]
fn as_mut_ptr(&mut self) -> *mut T {
(&mut self.2[..]).as_mut_ptr()
}
}
}