Gwinel / likwid

Automatically exported from code.google.com/p/likwid
GNU General Public License v3.0
0 stars 0 forks source link

Core numbers are wrong in timeline mode #101

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Found in likwid-perfctr.c

    if (optTimeline)
    {
-------------------------
        fprintf(OUTSTREAM,"CORES: %d", threads[1]); //should be threads[0]
-------------------------
        for (int i=1; i<numThreads; i++)
        {
            fprintf(OUTSTREAM," %d", threads[i]);
        }
        fprintf(OUTSTREAM," \n");

        daemon_init(eventString);
        daemon_start(interval);
    }

Original issue reported on code.google.com by TimKiefe...@gmail.com on 25 Mar 2013 at 3:49

GoogleCodeExporter commented 9 years ago
It is fixed now in my head. Do not remember it but still thanks for the report.

Original comment by jan.trei...@gmail.com on 8 May 2013 at 8:31