Skip to main content

Device

Struct Device 

Source
pub struct Device<'e> { /* private fields */ }
Available on crate feature api-22 only.

Implementations§

Source§

impl<'e> Device<'e>

Source

pub fn ep(&self) -> Result<&'e str>

Returns the name of the EP this device belongs to.

let env = Environment::current()?;
let cpu = env.devices().next().unwrap();
assert!(matches!(cpu.ep(), Ok("CPUExecutionProvider")));
Source

pub fn ep_vendor(&self) -> Result<&'e str>

Returns the name of the EP vendor this device belongs to, e.g. "Microsoft" for DirectML devices.

For the manufacturer of the device, see [Device::vendor].

let env = Environment::current()?;
let cpu = env.devices().next().unwrap();
assert!(matches!(cpu.ep_vendor(), Ok("Microsoft")));
Source

pub fn hardware_device(&self) -> HardwareDevice<'e>

Source

pub fn memory_info(&self, host_accessible: bool) -> MemoryInfo<'_>

Available on crate feature api-23 only.
Source

pub fn compatibility<E: ExecutionProvider>( &self, compatibility_info: &CompatibilityInfo<E>, ) -> Result<DeviceCompatibility>

Available on crate feature api-24 only.

Trait Implementations§

Source§

impl AsPointer for Device<'_>

Source§

type Sys = OrtEpDevice

This safe type’s corresponding ort_sys type.
Source§

fn ptr(&self) -> *const Self::Sys

Returns the underlying ort_sys type pointer this safe type wraps. The pointer is guaranteed to be non-null.
Source§

fn ptr_mut(&mut self) -> *mut Self::Sys

Returns the underlying ort_sys type pointer this safe type wraps as a mutable pointer. The pointer is guaranteed to be non-null.

Auto Trait Implementations§

§

impl<'e> !Send for Device<'e>

§

impl<'e> !Sync for Device<'e>

§

impl<'e> Freeze for Device<'e>

§

impl<'e> RefUnwindSafe for Device<'e>

§

impl<'e> Unpin for Device<'e>

§

impl<'e> UnsafeUnpin for Device<'e>

§

impl<'e> UnwindSafe for Device<'e>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more