numr 0.5.2

High-performance numerical computing with multi-backend GPU acceleration (CPU/CUDA/WebGPU)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! SIMD-accelerated binary operations.
//!
//! See [`dispatch`] for the public dispatch functions.

#[cfg(target_arch = "aarch64")]
pub(crate) mod aarch64;
#[cfg(target_arch = "x86_64")]
pub(crate) mod x86_64;

pub(crate) mod dispatch;

#[allow(unused_imports)]
pub use dispatch::*;