pub trait MemoryTupleTimer {
// Required method
unsafe fn time_subsequent_access_from_ram(
&self,
a: *const u8,
b: *const u8,
rounds: usize,
) -> u64;
}Expand description
Measures memory access timing between address pairs.
Used to detect DRAM bank conflicts and verify memory organization during allocator setup.