pub struct RsCompleted {
pub conv_ld: Valid<U<{ _ }>>,
pub conv_ex: Valid<U<{ _ }>>,
pub conv_st: Valid<U<{ _ }>>,
pub matmul_ld: Valid<U<{ _ }>>,
pub matmul_ex: Valid<U<{ _ }>>,
pub matmul_st: Valid<U<{ _ }>>,
}
Expand description
Number of completed instructions. It will be send to LoopConv
and LoopMatmul
modules.
Fields§
§conv_ld: Valid<U<{ _ }>>
Number of completed LD instructions to be sent to LoopConv
.
conv_ex: Valid<U<{ _ }>>
Number of completed EX instructions to be sent to LoopConv
.
conv_st: Valid<U<{ _ }>>
Number of completed ST instructions to be sent to LoopConv
.
matmul_ld: Valid<U<{ _ }>>
Number of completed LD instructions to be sent to LoopMatmul
.
matmul_ex: Valid<U<{ _ }>>
Number of completed EX instructions to be sent to LoopMatmul
.
matmul_st: Valid<U<{ _ }>>
Number of completed ST instructions to be sent to LoopMatmul
.
Trait Implementations§
source§impl Debug for RsCompleted
impl Debug for RsCompleted
Auto Trait Implementations§
impl RefUnwindSafe for RsCompleted
impl Send for RsCompleted
impl Sync for RsCompleted
impl Unpin for RsCompleted
impl UnwindSafe for RsCompleted
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