pub trait Gather3D<T: ScalarOperand + Zero + Copy> {
// Required method
fn gather(
&self,
indices_rows: &[usize],
indices_cols: &[usize],
indices_depth: &[usize],
) -> Array3<T>;
}
pub trait Gather3D<T: ScalarOperand + Zero + Copy> {
// Required method
fn gather(
&self,
indices_rows: &[usize],
indices_cols: &[usize],
indices_depth: &[usize],
) -> Array3<T>;
}