burn::tensor::backend

Trait DeviceOps

pub trait DeviceOps:
    Clone
    + Default
    + PartialEq
    + Send
    + Sync
    + Debug {
    // Required method
    fn id(&self) -> DeviceId;
}
Expand description

The handle device trait allows to get an id for a backend device.

Required Methods§

fn id(&self) -> DeviceId

Return the device id.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl<B1, B2> DeviceOps for MultiDevice<B1, B2>
where B1: Backend, B2: Backend,

§

fn id(&self) -> DeviceId

§

impl<B1, B2, B3> DeviceOps for MultiDevice<B1, B2, B3>
where B1: Backend, B2: Backend, B3: Backend,

§

fn id(&self) -> DeviceId

§

impl<B1, B2, B3, B4> DeviceOps for MultiDevice<B1, B2, B3, B4>
where B1: Backend, B2: Backend, B3: Backend, B4: Backend,

§

fn id(&self) -> DeviceId

Implementors§