Hello,
I downloaded AMD μProf to try and experiment with it and see how well it performs for working on low-level optimizations.
I run into this error when trying to profile my simple c++ application. "0% Processing profile metrics...." It never seems to make any progress and just gets stuck processing data.
I'm using version 3.3 or AMDuProf-3.3.490.exe.
Code:
void loop_1(int steps, int* a)
{
for (int i=0; i<steps; i++) { a[0]++; a[0]++; }
}
void loop_2(int steps, int* a)
{
for (int i=0; i<steps; i++) { a[0]++; a[1]++; }
}
int main()
{
int steps = 256 * 1024 * 1024;
int* a = new int[2];
loop_1(steps, a);
loop_2(steps, a);
return 0;
}