pub enum CudaResidentGraphSessionEvidenceError {
Session(CudaResidentGraphSessionError),
Speedup(CudaMegakernelSpeedupGateError),
SampleReserveFailed {
capacity: usize,
message: String,
},
}Expand description
Error while converting resident graph session evidence into release CSV.
Variants§
Session(CudaResidentGraphSessionError)
Resident session evidence was not a valid final-only resident session.
Speedup(CudaMegakernelSpeedupGateError)
Megakernel speedup release gate rejected the converted samples.
SampleReserveFailed
Resident session evidence sample staging could not reserve enough slots.
Trait Implementations§
Source§impl Clone for CudaResidentGraphSessionEvidenceError
impl Clone for CudaResidentGraphSessionEvidenceError
Source§fn clone(&self) -> CudaResidentGraphSessionEvidenceError
fn clone(&self) -> CudaResidentGraphSessionEvidenceError
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 moreSource§impl Error for CudaResidentGraphSessionEvidenceError
impl Error for CudaResidentGraphSessionEvidenceError
1.30.0 · 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()
Source§impl From<CudaMegakernelSpeedupGateError> for CudaResidentGraphSessionEvidenceError
impl From<CudaMegakernelSpeedupGateError> for CudaResidentGraphSessionEvidenceError
Source§fn from(error: CudaMegakernelSpeedupGateError) -> Self
fn from(error: CudaMegakernelSpeedupGateError) -> Self
Converts to this type from the input type.
Source§impl From<CudaResidentGraphSessionError> for CudaResidentGraphSessionEvidenceError
impl From<CudaResidentGraphSessionError> for CudaResidentGraphSessionEvidenceError
Source§fn from(error: CudaResidentGraphSessionError) -> Self
fn from(error: CudaResidentGraphSessionError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CudaResidentGraphSessionEvidenceError
impl PartialEq for CudaResidentGraphSessionEvidenceError
Source§fn eq(&self, other: &CudaResidentGraphSessionEvidenceError) -> bool
fn eq(&self, other: &CudaResidentGraphSessionEvidenceError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CudaResidentGraphSessionEvidenceError
Auto Trait Implementations§
impl Freeze for CudaResidentGraphSessionEvidenceError
impl RefUnwindSafe for CudaResidentGraphSessionEvidenceError
impl Send for CudaResidentGraphSessionEvidenceError
impl Sync for CudaResidentGraphSessionEvidenceError
impl Unpin for CudaResidentGraphSessionEvidenceError
impl UnsafeUnpin for CudaResidentGraphSessionEvidenceError
impl UnwindSafe for CudaResidentGraphSessionEvidenceError
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