I uses below command to measure the ram writing speed but it is showing me far less than what is mentioned on RAM.
time dd if=/dev/zero of=tes bs=100M count=10 oflag=dsync && sync
10+0 records in
10+0 records out
1048576000 bytes (1.0 GB) copied, 1.05167 s, 997 MB/s
real 0m1.056s
user 0m0.001s
sys 0m1.053s
I am using DDR3 and calculating theoretical max ram speed by below formula is:
Max transfer rate= clock x no of bits / 8
DIMM module transfer 64 bits
Max Theoretical Transfer Rate= clock x (64/8)
=1333 x 8
=10,664 MB/s
So theoretical expected speed should be 10 GB/s (approx) but in reality it is comming out far less. So Can anyone please tell me why? Thanks in advance!
Well, if you write a huge number of small files, you'll encounter a lot of latency, which slows down the actual writing speed. If you write larger files to your RAM memory, you should be able to achieve higher speed levels.