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
//! Activation function tests - split into submodules for maintainability
//!
//! Submodules:
//! - `core_activations` - clip, softmax, log_softmax, relu, sigmoid, leaky_relu, elu
//! - `advanced_activations` - gelu, swish, hardswish, mish, selu
//! - `parallel_and_simd` - aligned vectors, parallel execution, AVX-512 path tests

mod advanced_activations;
mod core_activations;
mod parallel_and_simd;