numr 0.5.1

High-performance numerical computing with multi-backend GPU acceleration (CPU/CUDA/WebGPU)
Documentation
//! CUDA kernel launchers for special mathematical functions
//!
//! This module provides launchers for:
//! - Error functions: erf, erfc, erfinv
//! - Gamma functions: gamma, lgamma, digamma
//! - Beta functions: beta, betainc, gammainc, gammaincc
//! - Bessel functions: J0, J1, Y0, Y1, I0, I1, K0, K1
//! - Elliptic integrals: ellipk, ellipe
//! - Hypergeometric functions: hyp2f1, hyp1f1
//! - Airy functions: airy_ai, airy_bi
//! - Legendre functions: legendre_p, legendre_p_assoc
//! - Spherical harmonics: sph_harm
//! - Fresnel integrals: fresnel_s, fresnel_c

mod bessel;
mod core_functions;
mod extended;
mod helpers;

// Re-export all public launchers
pub use bessel::*;
pub use core_functions::*;
pub use extended::*;