macro_rules! simd_chunk_process {
(
$values:expr,
$chunk_size:expr,
$process_chunk:expr,
$process_remainder:expr
) => { ... };
}Expand description
Generate SIMD chunk processing with custom logic per chunk
This macro provides a framework for custom per-chunk processing while handling iteration, bounds checking, and remainder elements.
ยงParameters
$values: Input slice$chunk_size: Elements per chunk$process_chunk: Expression to process each chunk$process_remainder: Expression to process remainder elements