pub type QuickParameterFunction<T> = Box<dyn Fn(Option<Vec<&Matrix<T>>>, Option<Vec<&Matrix<T>>>) -> Result<(usize, usize, Vec<usize>)>>;Expand description
Shortcut type definition for closure defining output parameters for custom kernel. Inputs are two lists of matrices (stored matrices, then temporary ones), and the output is a Result containing a tuple of the output rows, output cols, and work sizes.
Aliased Typeยง
pub struct QuickParameterFunction<T>(/* private fields */);