trueno 0.17.2

High-performance SIMD compute library with GPU support for matrix operations
Documentation
1
2
3
4
5
6
7
8
9
10
//! GPU linear algebra operations
//!
//! Matrix multiplication, vector addition, dot product, and 2D convolution.

pub mod cached_matmul;
mod convolve2d;
mod dot;
mod matmul;
mod vec_ops;
pub mod wgsl_forward;