// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 Fábio Henrique de Lima Silva (fhl.bsb@gmail.com) All rights reserved.
//! Dynamic dispatch system for SIMD kernels.
/// Static `SimdMathConfig` struct and its methods.
/// CPU feature detection and global `SIMD_MATH` initialization.
/// `InstructionSet` enum for supported x86-64 ISA variants.
pub use SimdMathConfig;
pub use SIMD_MATH;
pub use TEST_ISA_OVERRIDE;
pub use ;
pub use InstructionSet;
/// Generates a `SimdMathConfig` with static descriptive fields only.
///
/// # Parameters
/// - `$isa`: The `InstructionSet` variant.
/// - `$name`: Friendly backend name.
/// - `$avx512`: Whether the backend is AVX-512 (`true`/`false`).