meuron 0.4.0

Meuron is a modular neural network library written in rust for training simple neural networks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod backend;
mod context;
mod ops;
mod params;
mod shaders;
mod tensor;

pub use backend::GPUBackend;
pub use context::{GpuContext, GpuPipelines};
pub use params::TENSOR_USAGE;
pub use tensor::GpuTensor;