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
11
12
13
14
//! Vector Unit Tests - Shattered for Maintainability
//!
//! Test modules:
//! - `core` - Basic construction and core operations
//! - `minmax` - minimum(), maximum(), neg() tests
//! - `stats` - Statistical operations (mean, variance, stddev, etc.)
//! - `normalize` - Normalization tests (zscore, minmax, layer_norm)
//! - `activation` - Activation function tests (softmax, swish, mish, etc.)

mod activation;
mod core;
mod minmax;
mod normalize;
mod stats;