pub struct TensorStudyConfig {
pub min_accelerated_cells: u64,
pub phase_budget: PhaseBudget,
pub tile_profile: TileProfile,
pub tolerances: DifferentialTolerances,
pub adapter: String,
}Expand description
Admission, crossover, accuracy, and evidence settings for Tensor studies.
Fields§
§min_accelerated_cells: u64Smallest admitted cell count sent to an active provider.
phase_budget: PhaseBudgetResidual phase and predicted arithmetic limits.
tile_profile: TileProfileProvider allocation, segmentation, and dtype limits.
tolerances: DifferentialTolerancesPublished fixed f32 comparison tolerances.
adapter: StringStable adapter identity retained in Study evidence.
Trait Implementations§
Source§impl Clone for TensorStudyConfig
impl Clone for TensorStudyConfig
Source§fn clone(&self) -> TensorStudyConfig
fn clone(&self) -> TensorStudyConfig
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 Debug for TensorStudyConfig
impl Debug for TensorStudyConfig
Source§impl Default for TensorStudyConfig
impl Default for TensorStudyConfig
Source§impl PartialEq for TensorStudyConfig
impl PartialEq for TensorStudyConfig
impl StructuralPartialEq for TensorStudyConfig
Auto Trait Implementations§
impl Freeze for TensorStudyConfig
impl RefUnwindSafe for TensorStudyConfig
impl Send for TensorStudyConfig
impl Sync for TensorStudyConfig
impl Unpin for TensorStudyConfig
impl UnsafeUnpin for TensorStudyConfig
impl UnwindSafe for TensorStudyConfig
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