pub struct SyncPartialJobIterator<IP: MatrixPrecision, L: SyncPartialLoadingStrategy> {
pub num_tasks: u32,
pub current: ComptimeCell<TaskCounter>,
/* private fields */
}Expand description
Accomplish the entire job of filling the stage
Fields§
§num_tasks: u32§current: ComptimeCell<TaskCounter>Trait Implementations§
Source§impl<IP: MatrixPrecision, L: SyncPartialLoadingStrategy> CubeType for SyncPartialJobIterator<IP, L>
impl<IP: MatrixPrecision, L: SyncPartialLoadingStrategy> CubeType for SyncPartialJobIterator<IP, L>
type ExpandType = SyncPartialJobIteratorExpand<IP, L>
Source§fn into_mut(scope: &mut Scope, expand: Self::ExpandType) -> Self::ExpandType
fn into_mut(scope: &mut Scope, expand: Self::ExpandType) -> Self::ExpandType
Wrapper around the init method, necessary to type inference.
Source§impl<IP: MatrixPrecision, L: SyncPartialLoadingStrategy> JobIterator for SyncPartialJobIterator<IP, L>
impl<IP: MatrixPrecision, L: SyncPartialLoadingStrategy> JobIterator for SyncPartialJobIterator<IP, L>
fn __expand_current( scope: &mut Scope, this: <Self as CubeType>::ExpandType, ) -> u32
fn __expand_num_tasks( scope: &mut Scope, this: <Self as CubeType>::ExpandType, ) -> u32
Auto Trait Implementations§
impl<IP, L> Freeze for SyncPartialJobIterator<IP, L>
impl<IP, L> !RefUnwindSafe for SyncPartialJobIterator<IP, L>
impl<IP, L> !Send for SyncPartialJobIterator<IP, L>
impl<IP, L> !Sync for SyncPartialJobIterator<IP, L>
impl<IP, L> Unpin for SyncPartialJobIterator<IP, L>
impl<IP, L> !UnwindSafe for SyncPartialJobIterator<IP, L>
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