Trait parenchyma::Device [] [src]

pub trait Device: 'static + Alloc<u8> + Alloc<f32> + Alloc<f64> + Synch<u8> + Synch<f32> + Synch<f64> + Viewable { }

An device capable of processing data.

A compute device is a processor, such as a CPU or a GPU. Device is simply an alias for the various trait bounds associated with a compute device.

Implementors