I am building a cache simulator for a intel core i7 but have a hard time finding the detailed specifications for the L1, L2 and L3 cache (shared). I need the Cacheblock size, cache size, associativity and so on... Can anyone point me in the good direction?
相关问题
- jsp caching tag library
- AMD CPU versus Intel CPU openCL
- How can we cache HLS video url once streamed
- OpenCL on Linux with integrated intel graphic chip
- Long latency instruction
相关文章
- Is there a google API to read cached content? [clo
- AWS API Gateway caching ignores query parameters
- Check if url is cached webview android
- WebView's LOAD_NO_CACHE setting still saves fi
- Why does the latency of the sqrtsd instruction cha
- QML Loader not shows changes on .qml file
- x86 Program Counter abstracted from microarchitect
- UnitOfWork in Action Filter seems to be caching
Intel's Optimization guide describes most of the required specifications per architectural generation (you didn't specify which i7 you have, there are now several generations since Nehalem and up to Haswell).
Haswell, for e.g., would have -
Note that if you're building a simulator, you'll want to have as many of these feature as possible parametrized. There are also many other considerations you'll need to take into account that are explained there (for e.g. inclusiveness, write-back/write-through protocols, cache coherency protocols, etc..)