pub trait BatchKernel: 'static + Send {
// Required method
fn execute(self: Box<Self>) -> VortexResult<Vector>;
}Expand description
Trait for batch execution kernels that produce a vector result.
pub trait BatchKernel: 'static + Send {
// Required method
fn execute(self: Box<Self>) -> VortexResult<Vector>;
}Trait for batch execution kernels that produce a vector result.