pub trait SVEStrategy<T: CustomNumeric> {
// Required methods
fn matrices(&self) -> Vec<DTensor<T, 2>> ⓘ;
fn postprocess(
&self,
u_list: Vec<DTensor<T, 2>>,
s_list: Vec<Vec<T>>,
v_list: Vec<DTensor<T, 2>>,
) -> SVEResult;
}Expand description
Trait for SVE computation strategies