Trait ocl_convolution::ConvElement

source ·
pub trait ConvElement: OclPrm + Copy + Default + WithParams + 'static {
    type Acc: OclPrm + Copy + Default + 'static;
}
Expand description

Supported element types for convolutions.

Required Associated Types§

source

type Acc: OclPrm + Copy + Default + 'static

Type of the multiply-add accumulator.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ConvElement for f32

§

type Acc = f32

source§

impl ConvElement for i8

§

type Acc = i32

Implementors§