pub struct UgIOp1 { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl InplaceOp1 for UgIOp1
impl InplaceOp1 for UgIOp1
fn name(&self) -> &'static str
Source§fn cpu_fwd(&self, _: &mut CpuStorage, _: &Layout) -> Result<()>
fn cpu_fwd(&self, _: &mut CpuStorage, _: &Layout) -> Result<()>
The forward pass, as run on a cpu device. Note that the storage can use arbitrary strides,
offsets etc so the associated layout should be used to access it.
Auto Trait Implementations§
impl Freeze for UgIOp1
impl RefUnwindSafe for UgIOp1
impl Send for UgIOp1
impl Sync for UgIOp1
impl Unpin for UgIOp1
impl UnwindSafe for UgIOp1
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