trueno 0.18.0

High-performance SIMD compute library with GPU support, LLM inference engine, and GGUF model loading
1
2
3
4
5
6
7
8
9
10
//! WGSL compute shaders for GPU operations

mod advanced;
pub mod backward;
mod basic_ops;
mod reductions;

pub use advanced::*;
pub use basic_ops::*;
pub(crate) use reductions::*;