What is a speed of cache accessing for modern CPUs? How many bytes can be read or written from memory every processor clock tick by Intel P4, Core2, Corei7, AMD?

Please, answer with both theoretical (width of ld/sd unit with its throughput in uOPs/tick) and practical numbers (even memcpy speed tests, or STREAM benchmark), if any.

PS it is question, related to maximal rate of load/store instructions in assembler. There can be theoretical rate of loading (all Instructions Per Tick are widest loads), but processor can give only part of such, a practical limit of loading.

link|improve this question

@osgx: Move to serverfault etc, not a programming question is it? – TFD Mar 1 '10 at 1:17
4  
@TFD, no, this is very programming related. – Nikolai N Fetissov Mar 1 '10 at 1:39
Consult "Analyzing Cache Bandwidth on the Intel Core 2 Architecture" by Robert Sch¨one, Wolfgang E. Nagel, and Stefan Pfl¨uger, Center for Information Services and High Performance Computing, Technische Universit¨at Dresden, 01062 Dresden, Germany In this paper, measured bandwidths between the computing cores and the different caches are presented. The STREAM benchmark1 is one of the most used kernels by scientists to determine the memory bandwidth. For deeper insight the STREAM benchmark was redesigned to get exact values for small problem sizes as well. – osgx May 22 '10 at 23:59
feedback

2 Answers

Widest read/writes are 128 bit (16 byte) SSE load/store. L1/L2/L3 caches have different bandwidths and latencies and these are of course CPU-specific. Typical L1 latency is 2 - 4 clocks on modern CPUs but you can usually issue 1 or 2 load instructions per clock.

I suspect there's a more specific question lurking here somewhere - what is it that you are actually trying to achieve ? Do you just want to write the fastest possible memcpy ?

link|improve this answer
Thanks. How many SSE loads can be issued per clock? I want to find peak load/store bandwidth for several generations of x86. Not only the memcpy, also a plain read and plain write (closer to STREAM benchmark) – osgx Mar 1 '10 at 9:51
1  
@osgx - it depends on the CPU - Core 2 and Core i7 can both issue 2 SSE loads per clock – Paul R Mar 1 '10 at 11:07
About fastest memcpy - Yes, the question can be reasked as "What is the theoretical fastest memcpy" (without actual implementation) and not only for very big data (as usual), but for small too (up to L1/2 size, up to L2/2 size, L3/3 size). – osgx Mar 1 '10 at 14:39
feedback
up vote 2 down vote accepted

For nehalem: rolfed.com/nehalem/nehalemPaper.pdf

Each core in the architecture has a 128-bit write port and a
128-bit read port to the L1 cache. 

128 bit = 16 bytes / clock read AND 128 bit = 16 bytes / clock write (can I combine read and write in single cycle?)

The L2 and L3 caches each have a 256-bit port for reading or writing, 
but the L3 cache must share its port with three other cores on the chip.

Can L2 and L3 read and write ports be used in single clock?

Each integrated memory controller has a theoretical bandwidth
peak of 32 Gbps.

Latency (clock ticks), http://www.anandtech.com/cpuchipsets/intel/showdoc.aspx?i=3326&p=5

           L1     L2     L3        mem
core 2      3     15     --
core i7     4     11     39
itanium     1     5-6    12-17   130-1000
link|improve this answer
2  
Answering your own question ? You still haven't explained what is is that you are trying to achieve with this information. You may get a better answer if you do. – Paul R Mar 1 '10 at 11:09
I studying cpu architectures and want to compare them. – osgx Mar 1 '10 at 13:08
feedback

Your Answer

 
or
required, but never shown

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