vector-core 0.3.0

Core library for Vector — the single source of truth for all Vector clients, SDKs, and interfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! SIMD-accelerated operations.
//!
//! Platform support:
//! - **ARM64**: NEON intrinsics
//! - **x86_64**: SSE2/AVX2 intrinsics
//! - **Other** (WASM, etc.): Scalar fallbacks
//!
//! Modules:
//! - `hex` — hex encode/decode (NEON TBL, SSE2/AVX2 arithmetic, scalar LUT)
//! - `image` — nearest-neighbor RGBA downsample (NEON gather, SSE2 gather, scalar)

pub mod hex;
pub mod image;