// Copyright (c) 2025-2026 COOLJAPAN OU (Team KitaSan)
// SPDX-License-Identifier: Apache-2.0
//! SIMD-optimized operations for performance-critical kernels
//!
//! This module provides SIMD implementations for various neural network operations
//! including layer normalization, softmax, and matrix operations, optimized for
//! different instruction sets (AVX-512, AVX2, NEON, RISC-V Vector).
pub use CpuFeatures;
pub use SIMDLayerNorm;
pub use SIMDMatrixOps;
pub use SIMDSoftmax;