openalgebra 0.0.1

Rust linear algebra library for OpenCL
1
2
3
4
5
6
7
8
use ::af;

mod LU;

pub trait Decomposable {
    type Factors;
    fn unpack(self) -> Self::Factors;
}