BatchKernel

Trait BatchKernel 

Source
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.

Required Methods§

Source

fn execute(self: Box<Self>) -> VortexResult<Vector>

Implementors§