notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

Memory.md (655B)


      1 # Memory
      2 
      3 Memory information from computer architecture course
      4 
      5 Memory performance can affect compute speed of multiple applications running concurrently. This results in poorer performance for one despite having the clocks needed to computer correctly (denial of memory). Using nice does not change this which is the priority system for OSes. This is being caused by the DRAM memory controller being shared and thus causing a bottleneck. 
      6 
      7 ## Links
      8 
      9 - [DRAM](DRAM.md)
     10 - [DRAMChips](DRAMChips.md)
     11 - [DRAMCell](DRAMCell.md)
     12 - [RowBuffer](RowBuffer.md)
     13 - [DRAMBanks](DRAMBanks.md)
     14 - [DRAMRefresh](DRAMRefresh.md)
     15 - [DisturbanceErrors](DisturbanceErrors.md)