pub struct CollectiveTensor<const D: usize> { /* private fields */ }Available on crate feature
std only.Expand description
A tensor handle used for a collective operation, that is not yet valid for use. We must ensure collective operations are completed before accessing the underlying data.
Implementations§
Source§impl<const D: usize> CollectiveTensor<D>
impl<const D: usize> CollectiveTensor<D>
Sourcepub fn new(handle: DispatchTensor) -> Self
pub fn new(handle: DispatchTensor) -> Self
Constructs a new CollectiveTensor.
Source§impl<const D: usize> CollectiveTensor<D>
impl<const D: usize> CollectiveTensor<D>
Sourcepub fn resolve(self) -> Tensor<D>
pub fn resolve(self) -> Tensor<D>
Synchronizes the collective operation and returns a valid tensor handle.
Sourcepub unsafe fn assume_resolved(self) -> Tensor<D>
pub unsafe fn assume_resolved(self) -> Tensor<D>
Returns the tensor handle without synchronizing.
§Safety
The caller must ensure that sync_collective() is called before
the returned handle is used in any computation.
Trait Implementations§
Source§impl<const D: usize> Clone for CollectiveTensor<D>
impl<const D: usize> Clone for CollectiveTensor<D>
Source§fn clone(&self) -> CollectiveTensor<D>
fn clone(&self) -> CollectiveTensor<D>
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 moreAuto Trait Implementations§
impl<const D: usize> !RefUnwindSafe for CollectiveTensor<D>
impl<const D: usize> !UnwindSafe for CollectiveTensor<D>
impl<const D: usize> Freeze for CollectiveTensor<D>
impl<const D: usize> Send for CollectiveTensor<D>
impl<const D: usize> Sync for CollectiveTensor<D>
impl<const D: usize> Unpin for CollectiveTensor<D>
impl<const D: usize> UnsafeUnpin for CollectiveTensor<D>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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