X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.h;h=36185b87e1710d05f6c1ff144b723bdcac49acdc;hp=a2307fe779ad7fda3463031fe6bdbbb3223735f3;hb=e258c5a779af3b330cbb797b12b272ea0dd83a40;hpb=126036abb093df88593ef9db67ac0b9a07f411a6 diff --git a/src/misc.h b/src/misc.h index a2307fe7..36185b87 100644 --- a/src/misc.h +++ b/src/misc.h @@ -97,4 +97,15 @@ public: { return T(rand64() & rand64() & rand64()); } }; + +/// Under Windows it is not possible for a process to run on more than one +/// logical processor group. This usually means to be limited to use max 64 +/// cores. To overcome this, some special platform specific API should be +/// called to set group affinity for each thread. Original code from Texel by +/// Peter Österlund. + +namespace WinProcGroup { + void bindThisThread(size_t idx); +} + #endif // #ifndef MISC_H_INCLUDED