Learn Before
Concept
Burst Reads versus Random Access in Memory
Reading from RAM requires first sending an address to the memory module, a setup process that takes roughly ns. Once established, subsequent data transfers are exceedingly fast, taking only ns per -bit record. When reading a long contiguous sequence of records—known as a burst read—the initial high cost is amortized. Conversely, isolated random reads require the ns setup every time, making the first read times more expensive than subsequent burst transfers. Consequently, while a system might perform up to random reads per second, computational efficiency dictates avoiding random memory access whenever possible in favor of burst reads and writes.
0
1
Updated 2026-05-18
Tags
D2L
Dive into Deep Learning @ D2L