Trait ocl_convolution::WithParams
source · pub trait WithParams {
type Params: Clone + Debug + Into<Self::ClParams>;
type ClParams: OclPrm;
// Required method
fn get_generic_params(params: &Self::Params) -> Params;
}
Expand description
Type that can be associated with convolution parameters.
Required Associated Types§
Required Methods§
sourcefn get_generic_params(params: &Self::Params) -> Params
fn get_generic_params(params: &Self::Params) -> Params
Extracts generic parameters.
Object Safety§
This trait is not object safe.