//! Pooling operations for DNN.
//!
//! This module provides GPU-accelerated 2D pooling primitives:
//!
//! - [`max_pool`] — Max pooling with optional index tracking for backpropagation.
//! - [`avg_pool`] — Average pooling with configurable padding inclusion.
//! - [`adaptive_pool`] — Adaptive pooling that adjusts kernel/stride automatically.
//! - [`global_pool`] — Global pooling (reduces spatial dims to 1x1).
pub use ;
pub use avg_pool2d;
pub use ;
pub use ;