https://bugs.freedesktop.org/show_bug.cgi?id=97102

--- Comment #10 from Tim Rowley <timothy.o.row...@intel.com> ---
I think the right fix for CalculateProcessorTopology is to prune empty nodes at
the end:

    for (auto it = out_nodes.begin(); it != out_nodes.end(); ) {
        if ((*it).cores.size() == 0)
            it = out_nodes.erase(it);
        else
            ++it;
    }

However, the rest of the topology logic with that cpuinfo comes to the
conclusion that's there's only two cores, and so will only generate two threads
with one being dedicated to the API.  We'll need to adjust that logic as well.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are the QA Contact for the bug.
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to