How to target Intel performance cores only in multithreading

Hi all,
I have a code that uses multithreading. My system has 12700K with 6/2 performance cores and 8 efficiency cores
The issue I have is that I want to use only performance cores since efficiency cores are not strong enough and delay the whole process to finish.
Moreover, my CPU thermally throttles when all cores are activated. How can I specifically target certain cores/threads so I can use onlt p-cores in Intel processor?

1 Like

It doesn’t know anything about performance cores / efficiency cores yet so you have to manually pin to the correct cores. But I would also be open to PRs that improve the package in this regard.

(Currently only works on Linux. Windows is in progress but I need help there because I don’t have a Windows machine… MacOS will never work.)

1 Like

Thank you!

1 Like