Skip to main content

vector_core/simd/
mod.rs

1//! SIMD-accelerated operations.
2//!
3//! Platform support:
4//! - **ARM64**: NEON intrinsics
5//! - **x86_64**: SSE2/AVX2 intrinsics
6//! - **Other** (WASM, etc.): Scalar fallbacks
7//!
8//! Modules:
9//! - `hex` — hex encode/decode (NEON TBL, SSE2/AVX2 arithmetic, scalar LUT)
10//! - `image` — nearest-neighbor RGBA downsample (NEON gather, SSE2 gather, scalar)
11
12pub mod hex;
13pub mod image;