use burn_core as burn;
use crate::PaddingConfig2d;
use burn::config::Config;
use burn::module::Module;
use burn::module::{Content, DisplaySettings, ModuleDisplay};
use burn::tensor::Tensor;
use burn::tensor::backend::Backend;
use burn::tensor::ops::PadMode;
use burn::tensor::module::avg_pool2d;
#[derive(Config, Debug)]
pub struct AvgPool2dConfig {
pub kernel_size: [usize; 2],
#[config(default = "kernel_size")]
pub strides: [usize; 2],
#[config(default = "PaddingConfig2d::Valid")]
pub padding: PaddingConfig2d,
#[config(default = "true")]
pub count_include_pad: bool,
#[config(default = "false")]
pub ceil_mode: bool,
}
#[derive(Module, Clone, Debug)]
#[module(custom_display)]
pub struct AvgPool2d {
pub stride: [usize; 2],
pub kernel_size: [usize; 2],
pub padding: PaddingConfig2d,
pub count_include_pad: bool,
pub ceil_mode: bool,
}
impl ModuleDisplay for AvgPool2d {
fn custom_settings(&self) -> Option<DisplaySettings> {
DisplaySettings::new()
.with_new_line_after_attribute(false)
.optional()
}
fn custom_content(&self, content: Content) -> Option<Content> {
content
.add("kernel_size", &alloc::format!("{:?}", &self.kernel_size))
.add("stride", &alloc::format!("{:?}", &self.stride))
.add_debug_attribute("padding", &self.padding)
.add("count_include_pad", &self.count_include_pad)
.add("ceil_mode", &self.ceil_mode)
.optional()
}
}
impl AvgPool2dConfig {
pub fn init(&self) -> AvgPool2d {
AvgPool2d {
stride: self.strides,
kernel_size: self.kernel_size,
padding: self.padding.clone(),
count_include_pad: self.count_include_pad,
ceil_mode: self.ceil_mode,
}
}
}
impl AvgPool2d {
pub fn forward<B: Backend>(&self, input: Tensor<B, 4>) -> Tensor<B, 4> {
let [_batch_size, _channels_in, height_in, width_in] = input.dims();
let ((top, bottom), (left, right)) = self.padding.calculate_padding_2d_pairs(
height_in,
width_in,
&self.kernel_size,
&self.stride,
);
if top != bottom || left != right {
let padded = input.pad((left, right, top, bottom), PadMode::Constant(0.0));
avg_pool2d(
padded,
self.kernel_size,
self.stride,
[0, 0],
self.count_include_pad,
self.ceil_mode,
)
} else {
avg_pool2d(
input,
self.kernel_size,
self.stride,
[top, left],
self.count_include_pad,
self.ceil_mode,
)
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::TestBackend;
use rstest::rstest;
#[test]
fn same_with_even_kernel_uses_asymmetric_padding() {
let device = Default::default();
let config = AvgPool2dConfig::new([2, 2])
.with_strides([1, 1])
.with_padding(PaddingConfig2d::Same);
let pool = config.init();
let input = Tensor::<TestBackend, 4>::ones([1, 2, 5, 5], &device);
let output = pool.forward(input);
assert_eq!(output.dims(), [1, 2, 5, 5]);
}
#[test]
fn display() {
let config = AvgPool2dConfig::new([3, 3]);
let layer = config.init();
assert_eq!(
alloc::format!("{layer}"),
"AvgPool2d {kernel_size: [3, 3], stride: [3, 3], padding: Valid, count_include_pad: true, ceil_mode: false}"
);
}
#[rstest]
#[case([2, 2])]
#[case([1, 2])]
fn default_strides_match_kernel_size(#[case] kernel_size: [usize; 2]) {
let config = AvgPool2dConfig::new(kernel_size);
assert_eq!(
config.strides, kernel_size,
"Expected strides ({:?}) to match kernel size ({:?}) in default AvgPool2dConfig::new constructor",
config.strides, config.kernel_size
);
}
#[test]
fn asymmetric_padding_forward() {
let device = Default::default();
let config = AvgPool2dConfig::new([3, 3])
.with_strides([1, 1])
.with_padding(PaddingConfig2d::Explicit(1, 2, 3, 4));
let pool = config.init();
let input = Tensor::<TestBackend, 4>::ones([1, 2, 4, 5], &device);
let output = pool.forward(input);
assert_eq!(output.dims(), [1, 2, 6, 9]);
}
#[test]
fn symmetric_explicit_padding_forward() {
let device = Default::default();
let config = AvgPool2dConfig::new([3, 3])
.with_strides([1, 1])
.with_padding(PaddingConfig2d::Explicit(2, 2, 2, 2));
let pool = config.init();
let input = Tensor::<TestBackend, 4>::ones([1, 2, 4, 5], &device);
let output = pool.forward(input);
assert_eq!(output.dims(), [1, 2, 6, 7]);
}
}