Processor cache profiling for C # .net code?

I saw several tools with which you can profile the cache for C and C ++, but the tool (Valgrind) was intended for Linux, and they claim that their website has too much work to do for windows).

Are there any tools that a C # developer can use to profile cache?

I have an ANTS Performance Profiler but it does not perform cache profiling.

+5
source share
1 answer

Try Intel VTune Amplifier. With this tool you can collect information about hits, skipped caches and some other cache memory and memory related counters.

I have not tried it for C # profiling, but it should work the same as for C / C ++.

0
source

All Articles