Module simd

Module simd 

Source
Expand description

SIMD-accelerated pattern matching

Uses SSE2/AVX2 for fast pattern scanning when available. Falls back to scalar implementation on unsupported platforms.

In no_std mode, runtime SIMD detection is disabled and defaults to scalar implementation. Use target features to enable SIMD at compile time.

Structs§

SimdScanner
SIMD-accelerated pattern scanner

Enums§

SimdLevel
SIMD implementation selector

Functions§

simd_scan
scan data for pattern using SIMD when available
simd_scan_first
scan data for first pattern match using SIMD