pub struct MatMulShape {
pub m: String,
pub n: String,
pub k: String,
}Expand description
Symbolic dimension names for matrix multiplication.
Fields§
§m: StringNumber of rows in the left matrix.
n: StringNumber of columns in the right matrix.
k: StringShared inner dimension.
Trait Implementations§
Source§impl Clone for MatMulShape
impl Clone for MatMulShape
Source§fn clone(&self) -> MatMulShape
fn clone(&self) -> MatMulShape
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 MatMulShape
impl Debug for MatMulShape
Auto Trait Implementations§
impl Freeze for MatMulShape
impl RefUnwindSafe for MatMulShape
impl Send for MatMulShape
impl Sync for MatMulShape
impl Unpin for MatMulShape
impl UnsafeUnpin for MatMulShape
impl UnwindSafe for MatMulShape
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