Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anyone give me the approximate time (in nanoseconds) to access L1, L2 and L3 caches, as well as main memory on Intel i7 processors?

While this isn't specifically a programming question, knowing these kinds of speed details is neccessary for some low-latency programming challenges.

EDIT: The second link from Dave has the following numbers:
Core i7 Xeon 5500 Series Data Source Latency (approximate)
L1 CACHE hit, ~4 cycles
L2 CACHE hit, ~10 cycles
L3 CACHE hit, line unshared ~40 cycles
L3 CACHE hit, shared line in another core ~65 cycles
L3 CACHE hit, modified in another core ~75 cycles remote
remote L3 CACHE ~100-300 cycles
Local Dram ~60 ns
Remote Dram ~100 ns

share|improve this question

2 Answers

up vote 10 down vote accepted

Here is a Performance Analysis Guide for the i7 and Xeon range of processors. I should stress, this has what you need and more (for example, check page 22 for some timings & cycles for example).

Additionally, this page has some details on clock cycles etc

EDIT: I should highlight that, as well as timing/cycle information, the above intel document addresses much more (extremely) useful details of the i7 and Xeon range of processors (from a performance point of view).

share|improve this answer

Numbers everyone should know

  • L1 cache reference 0.5 ns
  • Branch mispredict 5 ns
  • L2 cache reference 7 ns
  • Mutex lock/unlock 100 ns
  • Main memory reference 100 ns
  • Compress 1K bytes with Zippy 10,000 ns
  • Send 2K bytes over 1 Gbps network 20,000 ns
  • Read 1 MB sequentially from memory 250,000 ns
  • Round trip within same datacenter 500,000 ns
  • Disk seek 10,000,000 ns
  • Read 1 MB sequentially from network 10,000,000 ns
  • Read 1 MB sequentially from disk 30,000,000 ns
  • Send packet CA->Netherlands->CA 150,000,000 ns

from http://surana.wordpress.com/2009/01/01/numbers-everyone-should-know/, http://sites.google.com/site/io/building-scalable-web-applications-with-google-app-engine

share|improve this answer
3  
Surely these care very HUGE amounts, based on processor design, ram latency/frequency, hard disk caching(both type and size)/rpm etc etc? To Quote INTEL (for values they released for one specific CPU):"NOTE:These values are rough approximations. They depend on Core and Uncore Frequencies, Memory speeds, BIOS settings, Number of DIMMS, etc etc. YOUR MILEAGE MAY VARY..." – Dave Nov 3 '10 at 13:22
4  
@Dave that's true, but this numbers show the order of magnitude – Andrey Nov 3 '10 at 13:24
An order of magnitude for communications, maybe (i.e. light/electricity can only travel so fast). However, for CPU's and memory, they could easily be out by orders of magnitude. With no reference to the type/speed/architecture of the CPU, they're useless... – Dave Nov 3 '10 at 13:28
4  
@Dave, even though type/speed/architecture of the cpu is different, I believe the relative timing should roughly remain same, so it's just a rough guideline to know when you code. More meaningful analysis should be done via profiler of course... – xosp7tom Jan 3 '12 at 23:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.