pub struct CudaBatchGroupError { /* private fields */ }Expand description
Failure while executing one homogeneous CUDA group.
No partially written dense output from the affected group is exposed. Other prepared groups may still succeed when the retained CUDA session remains usable.
Implementations§
Source§impl CudaBatchGroupError
impl CudaBatchGroupError
Sourcepub fn source_indices(&self) -> &[usize]
pub fn source_indices(&self) -> &[usize]
Original input indices whose dense group output was discarded.
Sourcepub fn into_parts(self) -> (Vec<usize>, Error)
pub fn into_parts(self) -> (Vec<usize>, Error)
Consume the group failure into affected indices and its source.
Trait Implementations§
Source§impl Debug for CudaBatchGroupError
impl Debug for CudaBatchGroupError
Source§impl Display for CudaBatchGroupError
impl Display for CudaBatchGroupError
Source§impl Error for CudaBatchGroupError
impl Error for CudaBatchGroupError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
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
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for CudaBatchGroupError
impl !UnwindSafe for CudaBatchGroupError
impl Freeze for CudaBatchGroupError
impl Send for CudaBatchGroupError
impl Sync for CudaBatchGroupError
impl Unpin for CudaBatchGroupError
impl UnsafeUnpin for CudaBatchGroupError
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
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