tension 0.0.2

Tensor library with OpenCL acceleration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod num;
pub use num::*;

mod buffer;
pub use buffer::*;

mod tensor;
pub use tensor::*;

pub mod prelude {
    pub use crate::{
        Buffer as _,
        Tensor as _,
    };
}