//! Sparse attention mechanisms for efficient computation on long sequences
//!
//! This module provides sparse attention patterns that reduce complexity from O(n²) to sub-quadratic.
pub use FlashAttention;
pub use LinearAttention;
pub use LocalGlobalAttention;
pub use ;