Difference between RAM bandwidth and speed

memory

I am a bit new at this hardware stuff.

I read from Wikipedia that:

Memory bandwidth is the rate at which data can be read from or stored
into a semiconductor memory by a processor.

So, what is ram speed, exactly? Because rams have a PC part which describes the bandwidth and DDR which describes the speed. What's the difference between these two?

Best Answer

DDR is just an acronym for Double Data Rate.

Compared to single data rate (SDR) SDRAM, the DDR SDRAM interface makes higher transfer rates possible by more strict control of the timing of the electrical data and clock signals. Implementations often have to use schemes such as phase-locked loops and self-calibration to reach the required timing accuracy.

With data being transferred 64 bits at a time, DDR SDRAM gives a transfer rate of (memory bus clock rate) × 2 (for dual rate) × 64 (number of bits transferred) / 8 (number of bits/byte). Thus, with a bus frequency of 100 MHz, DDR SDRAM gives a maximum transfer rate of 1600 MB/s.

Related Question