//! Batch matrix operations optimized for neural networks
//!
//! This module provides specialized batch matrix operations that are commonly
//! used in neural network computations, such as batch matrix multiplication,
//! batch normalization operations, convolution operations, attention mechanisms,
//! and RNN/LSTM operations.
// mod attention; // Disabled - has syntax errors (unclosed delimiters)
// Re-export all public functions from submodules
// pub use attention::*;
pub use *;
pub use *;
pub use *;
pub use *;