1 2 3 4 5 6 7
pub trait CompareTensor { type TensorType; fn max_pair(&self, o: &Self::TensorType) -> Self::TensorType; fn min_pair(&self, o: &Self::TensorType) -> Self::TensorType; }