pub struct LoweredTile { /* private fields */ }Expand description
One completed tile with separate canonical real and imaginary f32 Tensors.
Implementations§
Source§impl LoweredTile
impl LoweredTile
Sourcepub fn real(&self) -> &Tensor
pub fn real(&self) -> &Tensor
Returns the real component Tensor with shape [tile.rows, tile.columns].
Sourcepub fn imaginary(&self) -> &Tensor
pub fn imaginary(&self) -> &Tensor
Returns the imaginary component Tensor with shape [tile.rows, tile.columns].
Sourcepub fn submissions(&self) -> &[SubmissionEvidence]
pub fn submissions(&self) -> &[SubmissionEvidence]
Returns executor flush evidence in deterministic submission order.
Trait Implementations§
Source§impl Clone for LoweredTile
impl Clone for LoweredTile
Source§fn clone(&self) -> LoweredTile
fn clone(&self) -> LoweredTile
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 !RefUnwindSafe for LoweredTile
impl !UnwindSafe for LoweredTile
impl Freeze for LoweredTile
impl Send for LoweredTile
impl Sync for LoweredTile
impl Unpin for LoweredTile
impl UnsafeUnpin for LoweredTile
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