Skip to main content

PartitionExecutionError

Enum PartitionExecutionError 

Source
#[non_exhaustive]
pub enum PartitionExecutionError {
Show 43 variants MissingBoundedCompletionPolicy, CommunicationDeadlineExceeded { operation: CommunicationOperation, phase: DistributedExecutionPhase, route: Option<CommunicationRouteId>, cancellation: CompletionCancellationMode, }, CommunicationCompletionFailed { operation: CommunicationOperation, phase: DistributedExecutionPhase, route: Option<CommunicationRouteId>, error: String, }, CommunicationSubmissionFailed { operation: CommunicationOperation, phase: DistributedExecutionPhase, route: Option<CommunicationRouteId>, error: String, }, CommunicationPoisoned { operation: CommunicationOperation, phase: DistributedExecutionPhase, route: Option<CommunicationRouteId>, cancellation: CompletionCancellationMode, }, RecoveryAgreementWithoutFailure { phase: DistributedExecutionPhase, }, ResourceCount { expected_groups: usize, actual_groups: usize, expected_routes: usize, actual_routes: usize, }, ResourceIdentity { expected: u64, actual: u64, }, UnknownGroup(CollectiveGroupId), NotGroupMember(CollectiveGroupId), UnknownRoute(CommunicationRouteId), RouteSubmissionWave { first: CommunicationRouteId, expected: usize, actual: usize, }, NotRouteEndpoint(CommunicationRouteId), OperationNotSelected { resource: String, operation: CommunicationOperation, }, TensorDtype { dtype: TensorDtype, }, TensorLimits { shape: Vec<usize>, }, CommunicationAxis { axis: usize, rank: usize, }, CommunicationShapeOverflow, CommunicationOutputShape { expected: Vec<usize>, actual: Vec<usize>, }, MissingTensorLimits, TensorCount { expected_at_most: usize, actual: usize, }, PeerCount { expected: usize, actual: usize, }, PeerCountLimit { maximum: usize, }, BoundaryTensorCount { boundary: &'static str, expected: usize, actual: usize, }, BoundaryShape { role: String, expected: Vec<usize>, actual: Vec<usize>, }, BoundaryDtype { role: String, expected: TensorDtype, actual: TensorDtype, }, BoundaryFraming(String), OutputOwnerNotMember { rank: usize, group: CollectiveGroupId, }, OutputOwnership { rank: usize, owner: usize, }, MissingOutputPublication, GroupCount { graph: usize, contracts: usize, drivers: usize, }, DriverGroup { group: usize, }, RouteGroup(CommunicationRouteId), RouteDependency(CommunicationRouteId), RouteCount { plan: usize, manifest: usize, }, RouteDescriptorMismatch { route: CommunicationRouteId, planned_source: usize, planned_destination: usize, manifest_source: usize, manifest_destination: usize, }, RouteOwnerMissing { route: CommunicationRouteId, rank: usize, group: usize, }, Communication(String), RemotePhaseFailure(DistributedExecutionPhase), ResidencyPolicyMismatch, OperationPolicyUnavailable(CommunicationOperation), InexactOperationRequirement { group: CollectiveGroupId, operation: CommunicationOperation, }, CommunicationPolicyMismatch,
}
Expand description

Cold-path validation or execution failure in the neutral partition driver.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

MissingBoundedCompletionPolicy

A partition communication object omitted the selected bounded-wait contract.

§

CommunicationDeadlineExceeded

Exact communication did not complete by its selected deadline.

§

CommunicationCompletionFailed

A submitted communication reported a terminal error while completing.

§

CommunicationSubmissionFailed

Native submission failed after entering one communication operation.

§

CommunicationPoisoned

A prior timed-out or failed operation left this communicator unsafe for reuse.

§

RecoveryAgreementWithoutFailure

A recovery-only agreement was invoked without a local failure or prior poison.

§

ResourceCount

Native resources were not paired one-for-one with manifest descriptors.

Fields

§expected_groups: usize
§actual_groups: usize
§expected_routes: usize
§actual_routes: usize
§

ResourceIdentity

A native resource was paired with a different opaque manifest identity.

Fields

§expected: u64
§actual: u64
§

UnknownGroup(CollectiveGroupId)

§

NotGroupMember(CollectiveGroupId)

§

UnknownRoute(CommunicationRouteId)

§

RouteSubmissionWave

Fields

§expected: usize
§actual: usize
§

NotRouteEndpoint(CommunicationRouteId)

§

OperationNotSelected

Fields

§resource: String
§

TensorDtype

Fields

§

TensorLimits

Fields

§shape: Vec<usize>
§

CommunicationAxis

Fields

§axis: usize
§rank: usize
§

CommunicationShapeOverflow

§

CommunicationOutputShape

Fields

§expected: Vec<usize>
§actual: Vec<usize>
§

MissingTensorLimits

§

TensorCount

Fields

§expected_at_most: usize
§actual: usize
§

PeerCount

Fields

§expected: usize
§actual: usize
§

PeerCountLimit

Fields

§maximum: usize
§

BoundaryTensorCount

Fields

§boundary: &'static str
§expected: usize
§actual: usize
§

BoundaryShape

Fields

§role: String
§expected: Vec<usize>
§actual: Vec<usize>
§

BoundaryDtype

Fields

§role: String
§expected: TensorDtype
§

BoundaryFraming(String)

§

OutputOwnerNotMember

Fields

§rank: usize
§

OutputOwnership

Fields

§rank: usize
§owner: usize
§

MissingOutputPublication

§

GroupCount

Fields

§graph: usize
§contracts: usize
§drivers: usize
§

DriverGroup

Fields

§group: usize
§

RouteGroup(CommunicationRouteId)

§

RouteDependency(CommunicationRouteId)

§

RouteCount

Fields

§plan: usize
§manifest: usize
§

RouteDescriptorMismatch

Fields

§planned_source: usize
§planned_destination: usize
§manifest_source: usize
§manifest_destination: usize
§

RouteOwnerMissing

Fields

§rank: usize
§group: usize
§

Communication(String)

§

RemotePhaseFailure(DistributedExecutionPhase)

§

ResidencyPolicyMismatch

§

OperationPolicyUnavailable(CommunicationOperation)

§

InexactOperationRequirement

§

CommunicationPolicyMismatch

Trait Implementations§

Source§

impl Debug for PartitionExecutionError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for PartitionExecutionError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for PartitionExecutionError

1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.