1#[macro_export] 2macro_rules! dims { 3 ($($dim:expr),*) => { 4 ShapeFact::from(&[$(TDim::from($dim.clone())),*]) 5 } 6}