Just want to document the answer to this specific question... a similar question (with potential answers was asked here)
All platforms welcome, please specify the platform for your answer.
|
Just want to document the answer to this specific question... a similar question (with potential answers was asked here) All platforms welcome, please specify the platform for your answer. | ||||
|
feedback
|
|
On Linux (with a reasonably recent kernel), you can get this information out of /sys:
This directory has a subdirectory for each level of cache. Each of those directories contains the following files:
This gives you more information about the cache then you'd ever hope to know, including the cacheline size as well as what CPUs share this cache. This is very useful if you are doing multithreaded programming with shared data (you'll get better results if the threads sharing data are also sharing a cache). | |||||||||||||
feedback
|
|
I have been working on some cache line stuff and needed to write a cross-platform function. I posted it to my new blog here, or you can just use the source below. Feel free to do whatever you want with it.
| |||||||||
feedback
|
|
On x86, you can use the CPUID instruction with function 2 to determine various properties of the cache and the TLB. Parsing the output of function 2 is somewhat complicated, so I'll refer you to section 3.1.3 of the Intel Processor Identification and the CPUID Instruction (PDF). To get this data from C/C++ code, you'll need to use inline assembly, compiler intrinsics, or call an external assembly function to perform the CPUID instruction. | |||||
feedback
|
|
On Linux look at sysconf(3).
You can also get it from the command line using getconf:
| ||||
|
feedback
|
|
from http://blogs.msdn.com/oldnewthing/archive/2009/12/08/9933836.aspx
| |||
|
feedback
|
|
You can also try to do it programmatically by measuring some timing. Obviously, it won't always be as precise as cpuid and the likes, but it is more portable. ATLAS does it at its configuration stage, you may want to look at it: | |||
|
feedback
|