PAPI_3.7.1 L1D_CACHE_LD doesn't work properly Intel Core i7
Good Afternoon,
the native event L1D_CACHE_LD.MESI doesn't work properly (Intel Core i7/Nehalem).
The results was ten times more than I expected:
What should be the result for the following code (without any optimization) ?
The counter returns ~10 000 L1D_CACHE' loads.
Thank you
the native event L1D_CACHE_LD.MESI doesn't work properly (Intel Core i7/Nehalem).
The results was ten times more than I expected:
What should be the result for the following code (without any optimization) ?
- Code: Select all
double aArray[1000];
double aSumm = 0.0;
for(int aI=0; aI<1000;aI++)
{
aSumm += aArray[aI];
}
The counter returns ~10 000 L1D_CACHE' loads.
Thank you