openalgebra 0.0.1

Rust linear algebra library for OpenCL
use ::af;

mod impl_ops;
// mod macros;

#[derive(Clone, Copy)]
pub enum Axes {
    Row,
    Col,
}

// 2D Matrix
#[derive(Clone)]
pub struct Matrix {
    rows: usize,
    cols: usize,
    backend: af::Array,
    data: Vec<f64>,
}