I would like to use Intel Advisor to create a CPU roofline chart for a C++ program. The overhead of data collection phase could be super high if I capture data for all memory levels (adding --enable-cache-simulation
flag). To that end, I would like to collect data for a specific memory level (only DRAM). So, I was wondering if I can collect data only for a DRAM-level roolfine?
PS: I know that dropping --enable-cache-simulation
flag will collect data only for L1-level but I'm interested in DRAM not L1.