Enum hazardflow_designs::gemmini::sram::SramAddr
source · pub enum SramAddr {
Spad {
bank: U<2>,
address: U<14>,
},
Acc {
bank: U<1>,
address: U<14>,
},
}
Expand description
SramAddr
Sram has two types of memory: Scratchpad and Accumulator. Each inner field indicates bank id and address.
Used in execute module
Variants§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for SramAddr
impl Send for SramAddr
impl Sync for SramAddr
impl Unpin for SramAddr
impl UnwindSafe for SramAddr
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