trueno 0.17.5

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
//! Transcendental mathematical functions for Vector<f32>
//!
//! This module provides element-wise transcendental functions including:
//! - Exponentials: `exp`, `ln`, `log2`, `log10`
//! - Trigonometric: `sin`, `cos`, `tan`, `asin`, `acos`, `atan`
//! - Hyperbolic: `sinh`, `cosh`, `tanh`, `asinh`, `acosh`, `atanh`

mod exp_log;
mod hyperbolic;
mod trigonometric;

#[cfg(test)]
mod tests;