pub struct ExecutionProviderFallbackReport {
pub requested_provider: String,
pub fallback_provider: String,
pub assigned_node_count: usize,
pub assigned_ops: Vec<String>,
pub declines: Vec<ExecutionProviderDecline>,
}Expand description
Structured report for an accelerator request that executes on CPU.
Fields§
§requested_provider: StringRequested provider name, such as "cuda_ep".
fallback_provider: StringProvider that will execute the graph.
assigned_node_count: usizeNumber of executable graph/subgraph nodes assigned to the fallback EP.
assigned_ops: Vec<String>Sorted distinct domain::op classes assigned to the fallback EP.
declines: Vec<ExecutionProviderDecline>Nodes the requested provider did not claim, with colocated reasons.
Trait Implementations§
Source§impl Clone for ExecutionProviderFallbackReport
impl Clone for ExecutionProviderFallbackReport
Source§fn clone(&self) -> ExecutionProviderFallbackReport
fn clone(&self) -> ExecutionProviderFallbackReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Eq for ExecutionProviderFallbackReport
impl StructuralPartialEq for ExecutionProviderFallbackReport
Auto Trait Implementations§
impl Freeze for ExecutionProviderFallbackReport
impl RefUnwindSafe for ExecutionProviderFallbackReport
impl Send for ExecutionProviderFallbackReport
impl Sync for ExecutionProviderFallbackReport
impl Unpin for ExecutionProviderFallbackReport
impl UnsafeUnpin for ExecutionProviderFallbackReport
impl UnwindSafe for ExecutionProviderFallbackReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more