1//! Reduction operations for GPU (sum, mean, max, min, etc.) 2 3pub mod mean; 4pub mod min_max; 5pub mod norm; 6pub mod std_dev; 7pub mod sum;