]> git.sesse.net Git - stockfish/blob - src/misc.cpp
59c5e406030e25b6b5937957a0540920ba7ec099
[stockfish] / src / misc.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2023 The Stockfish developers (see AUTHORS file)
4
5   Stockfish is free software: you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation, either version 3 of the License, or
8   (at your option) any later version.
9
10   Stockfish is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU General Public License
16   along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #include "misc.h"
20
21 #ifdef _WIN32
22     #if _WIN32_WINNT < 0x0601
23         #undef _WIN32_WINNT
24         #define _WIN32_WINNT 0x0601  // Force to include needed API prototypes
25     #endif
26
27     #ifndef NOMINMAX
28         #define NOMINMAX
29     #endif
30
31     #include <windows.h>
32 // The needed Windows API for processor groups could be missed from old Windows
33 // versions, so instead of calling them directly (forcing the linker to resolve
34 // the calls at compile time), try to load them at runtime. To do this we need
35 // first to define the corresponding function pointers.
36 extern "C" {
37 using fun1_t = bool (*)(LOGICAL_PROCESSOR_RELATIONSHIP,
38                         PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX,
39                         PDWORD);
40 using fun2_t = bool (*)(USHORT, PGROUP_AFFINITY);
41 using fun3_t = bool (*)(HANDLE, CONST GROUP_AFFINITY*, PGROUP_AFFINITY);
42 using fun4_t = bool (*)(USHORT, PGROUP_AFFINITY, USHORT, PUSHORT);
43 using fun5_t = WORD (*)();
44 using fun6_t = bool (*)(HANDLE, DWORD, PHANDLE);
45 using fun7_t = bool (*)(LPCSTR, LPCSTR, PLUID);
46 using fun8_t = bool (*)(HANDLE, BOOL, PTOKEN_PRIVILEGES, DWORD, PTOKEN_PRIVILEGES, PDWORD);
47 }
48 #endif
49
50 #include <atomic>
51 #include <cmath>
52 #include <cstdlib>
53 #include <fstream>
54 #include <iomanip>
55 #include <iostream>
56 #include <mutex>
57 #include <sstream>
58 #include <string_view>
59
60 #include "types.h"
61
62 #if defined(__linux__) && !defined(__ANDROID__)
63     #include <sys/mman.h>
64 #endif
65
66 #if defined(__APPLE__) || defined(__ANDROID__) || defined(__OpenBSD__) \
67   || (defined(__GLIBCXX__) && !defined(_GLIBCXX_HAVE_ALIGNED_ALLOC) && !defined(_WIN32)) \
68   || defined(__e2k__)
69     #define POSIXALIGNEDALLOC
70     #include <stdlib.h>
71 #endif
72
73 namespace Stockfish {
74
75 namespace {
76
77 // Version number or dev.
78 constexpr std::string_view version = "dev";
79
80 // Our fancy logging facility. The trick here is to replace cin.rdbuf() and
81 // cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
82 // can toggle the logging of std::cout and std:cin at runtime whilst preserving
83 // usual I/O functionality, all without changing a single line of code!
84 // Idea from http://groups.google.com/group/comp.lang.c++/msg/1d941c0f26ea0d81
85
86 struct Tie: public std::streambuf {  // MSVC requires split streambuf for cin and cout
87
88     Tie(std::streambuf* b, std::streambuf* l) :
89         buf(b),
90         logBuf(l) {}
91
92     int sync() override { return logBuf->pubsync(), buf->pubsync(); }
93     int overflow(int c) override { return log(buf->sputc(char(c)), "<< "); }
94     int underflow() override { return buf->sgetc(); }
95     int uflow() override { return log(buf->sbumpc(), ">> "); }
96
97     std::streambuf *buf, *logBuf;
98
99     int log(int c, const char* prefix) {
100
101         static int last = '\n';  // Single log file
102
103         if (last == '\n')
104             logBuf->sputn(prefix, 3);
105
106         return last = logBuf->sputc(char(c));
107     }
108 };
109
110 class Logger {
111
112     Logger() :
113         in(std::cin.rdbuf(), file.rdbuf()),
114         out(std::cout.rdbuf(), file.rdbuf()) {}
115     ~Logger() { start(""); }
116
117     std::ofstream file;
118     Tie           in, out;
119
120    public:
121     static void start(const std::string& fname) {
122
123         static Logger l;
124
125         if (l.file.is_open())
126         {
127             std::cout.rdbuf(l.out.buf);
128             std::cin.rdbuf(l.in.buf);
129             l.file.close();
130         }
131
132         if (!fname.empty())
133         {
134             l.file.open(fname, std::ifstream::out);
135
136             if (!l.file.is_open())
137             {
138                 std::cerr << "Unable to open debug log file " << fname << std::endl;
139                 exit(EXIT_FAILURE);
140             }
141
142             std::cin.rdbuf(&l.in);
143             std::cout.rdbuf(&l.out);
144         }
145     }
146 };
147
148 }  // namespace
149
150
151 // Returns the full name of the current Stockfish version.
152 // For local dev compiles we try to append the commit sha and commit date
153 // from git if that fails only the local compilation date is set and "nogit" is specified:
154 // Stockfish dev-YYYYMMDD-SHA
155 // or
156 // Stockfish dev-YYYYMMDD-nogit
157 //
158 // For releases (non-dev builds) we only include the version number:
159 // Stockfish version
160 std::string engine_info(bool to_uci) {
161     std::stringstream ss;
162     ss << "Stockfish " << version << std::setfill('0');
163
164     if constexpr (version == "dev")
165     {
166         ss << "-";
167 #ifdef GIT_DATE
168         ss << stringify(GIT_DATE);
169 #else
170         constexpr std::string_view months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
171         std::string                month, day, year;
172         std::stringstream          date(__DATE__);  // From compiler, format is "Sep 21 2008"
173
174         date >> month >> day >> year;
175         ss << year << std::setw(2) << std::setfill('0') << (1 + months.find(month) / 4)
176            << std::setw(2) << std::setfill('0') << day;
177 #endif
178
179         ss << "-";
180
181 #ifdef GIT_SHA
182         ss << stringify(GIT_SHA);
183 #else
184         ss << "nogit";
185 #endif
186         ss << "-asn";
187     }
188
189     ss << (to_uci ? "\nid author " : " by ") << "the Stockfish developers (see AUTHORS file)";
190
191     return ss.str();
192 }
193
194
195 // Returns a string trying to describe the compiler we use
196 std::string compiler_info() {
197
198 #define make_version_string(major, minor, patch) \
199     stringify(major) "." stringify(minor) "." stringify(patch)
200
201     // Predefined macros hell:
202     //
203     // __GNUC__                Compiler is GCC, Clang or ICX
204     // __clang__               Compiler is Clang or ICX
205     // __INTEL_LLVM_COMPILER   Compiler is ICX
206     // _MSC_VER                Compiler is MSVC
207     // _WIN32                  Building on Windows (any)
208     // _WIN64                  Building on Windows 64 bit
209
210     std::string compiler = "\nCompiled by                : ";
211
212 #if defined(__INTEL_LLVM_COMPILER)
213     compiler += "ICX ";
214     compiler += stringify(__INTEL_LLVM_COMPILER);
215 #elif defined(__clang__)
216     compiler += "clang++ ";
217     compiler += make_version_string(__clang_major__, __clang_minor__, __clang_patchlevel__);
218 #elif _MSC_VER
219     compiler += "MSVC ";
220     compiler += "(version ";
221     compiler += stringify(_MSC_FULL_VER) "." stringify(_MSC_BUILD);
222     compiler += ")";
223 #elif defined(__e2k__) && defined(__LCC__)
224     #define dot_ver2(n) \
225         compiler += char('.'); \
226         compiler += char('0' + (n) / 10); \
227         compiler += char('0' + (n) % 10);
228
229     compiler += "MCST LCC ";
230     compiler += "(version ";
231     compiler += std::to_string(__LCC__ / 100);
232     dot_ver2(__LCC__ % 100) dot_ver2(__LCC_MINOR__) compiler += ")";
233 #elif __GNUC__
234     compiler += "g++ (GNUC) ";
235     compiler += make_version_string(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
236 #else
237     compiler += "Unknown compiler ";
238     compiler += "(unknown version)";
239 #endif
240
241 #if defined(__APPLE__)
242     compiler += " on Apple";
243 #elif defined(__CYGWIN__)
244     compiler += " on Cygwin";
245 #elif defined(__MINGW64__)
246     compiler += " on MinGW64";
247 #elif defined(__MINGW32__)
248     compiler += " on MinGW32";
249 #elif defined(__ANDROID__)
250     compiler += " on Android";
251 #elif defined(__linux__)
252     compiler += " on Linux";
253 #elif defined(_WIN64)
254     compiler += " on Microsoft Windows 64-bit";
255 #elif defined(_WIN32)
256     compiler += " on Microsoft Windows 32-bit";
257 #else
258     compiler += " on unknown system";
259 #endif
260
261     compiler += "\nCompilation architecture   : ";
262 #if defined(ARCH)
263     compiler += stringify(ARCH);
264 #else
265     compiler += "(undefined architecture)";
266 #endif
267
268     compiler += "\nCompilation settings       : ";
269     compiler += (Is64Bit ? "64bit" : "32bit");
270 #if defined(USE_VNNI)
271     compiler += " VNNI";
272 #endif
273 #if defined(USE_AVX512)
274     compiler += " AVX512";
275 #endif
276     compiler += (HasPext ? " BMI2" : "");
277 #if defined(USE_AVX2)
278     compiler += " AVX2";
279 #endif
280 #if defined(USE_SSE41)
281     compiler += " SSE41";
282 #endif
283 #if defined(USE_SSSE3)
284     compiler += " SSSE3";
285 #endif
286 #if defined(USE_SSE2)
287     compiler += " SSE2";
288 #endif
289     compiler += (HasPopCnt ? " POPCNT" : "");
290 #if defined(USE_NEON_DOTPROD)
291     compiler += " NEON_DOTPROD";
292 #elif defined(USE_NEON)
293     compiler += " NEON";
294 #endif
295
296 #if !defined(NDEBUG)
297     compiler += " DEBUG";
298 #endif
299
300     compiler += "\nCompiler __VERSION__ macro : ";
301 #ifdef __VERSION__
302     compiler += __VERSION__;
303 #else
304     compiler += "(undefined macro)";
305 #endif
306
307     compiler += "\n";
308
309     return compiler;
310 }
311
312
313 // Debug functions used mainly to collect run-time statistics
314 constexpr int MaxDebugSlots = 32;
315
316 namespace {
317
318 template<size_t N>
319 struct DebugInfo {
320     std::atomic<int64_t> data[N] = {0};
321
322     constexpr inline std::atomic<int64_t>& operator[](int index) { return data[index]; }
323 };
324
325 DebugInfo<2> hit[MaxDebugSlots];
326 DebugInfo<2> mean[MaxDebugSlots];
327 DebugInfo<3> stdev[MaxDebugSlots];
328 DebugInfo<6> correl[MaxDebugSlots];
329
330 }  // namespace
331
332 void dbg_hit_on(bool cond, int slot) {
333
334     ++hit[slot][0];
335     if (cond)
336         ++hit[slot][1];
337 }
338
339 void dbg_mean_of(int64_t value, int slot) {
340
341     ++mean[slot][0];
342     mean[slot][1] += value;
343 }
344
345 void dbg_stdev_of(int64_t value, int slot) {
346
347     ++stdev[slot][0];
348     stdev[slot][1] += value;
349     stdev[slot][2] += value * value;
350 }
351
352 void dbg_correl_of(int64_t value1, int64_t value2, int slot) {
353
354     ++correl[slot][0];
355     correl[slot][1] += value1;
356     correl[slot][2] += value1 * value1;
357     correl[slot][3] += value2;
358     correl[slot][4] += value2 * value2;
359     correl[slot][5] += value1 * value2;
360 }
361
362 void dbg_print() {
363
364     int64_t n;
365     auto    E   = [&n](int64_t x) { return double(x) / n; };
366     auto    sqr = [](double x) { return x * x; };
367
368     for (int i = 0; i < MaxDebugSlots; ++i)
369         if ((n = hit[i][0]))
370             std::cerr << "Hit #" << i << ": Total " << n << " Hits " << hit[i][1]
371                       << " Hit Rate (%) " << 100.0 * E(hit[i][1]) << std::endl;
372
373     for (int i = 0; i < MaxDebugSlots; ++i)
374         if ((n = mean[i][0]))
375         {
376             std::cerr << "Mean #" << i << ": Total " << n << " Mean " << E(mean[i][1]) << std::endl;
377         }
378
379     for (int i = 0; i < MaxDebugSlots; ++i)
380         if ((n = stdev[i][0]))
381         {
382             double r = sqrt(E(stdev[i][2]) - sqr(E(stdev[i][1])));
383             std::cerr << "Stdev #" << i << ": Total " << n << " Stdev " << r << std::endl;
384         }
385
386     for (int i = 0; i < MaxDebugSlots; ++i)
387         if ((n = correl[i][0]))
388         {
389             double r = (E(correl[i][5]) - E(correl[i][1]) * E(correl[i][3]))
390                      / (sqrt(E(correl[i][2]) - sqr(E(correl[i][1])))
391                         * sqrt(E(correl[i][4]) - sqr(E(correl[i][3]))));
392             std::cerr << "Correl. #" << i << ": Total " << n << " Coefficient " << r << std::endl;
393         }
394 }
395
396
397 // Used to serialize access to std::cout
398 // to avoid multiple threads writing at the same time.
399 std::ostream& operator<<(std::ostream& os, SyncCout sc) {
400
401     static std::mutex m;
402
403     if (sc == IO_LOCK)
404         m.lock();
405
406     if (sc == IO_UNLOCK)
407         m.unlock();
408
409     return os;
410 }
411
412
413 // Trampoline helper to avoid moving Logger to misc.h
414 void start_logger(const std::string& fname) { Logger::start(fname); }
415
416
417 #ifdef NO_PREFETCH
418
419 void prefetch(void*) {}
420
421 #else
422
423 void prefetch(void* addr) {
424
425     #if defined(_MSC_VER)
426     _mm_prefetch((char*) addr, _MM_HINT_T0);
427     #else
428     __builtin_prefetch(addr);
429     #endif
430 }
431
432 #endif
433
434
435 // Wrapper for systems where the c++17 implementation
436 // does not guarantee the availability of aligned_alloc(). Memory allocated with
437 // std_aligned_alloc() must be freed with std_aligned_free().
438 void* std_aligned_alloc(size_t alignment, size_t size) {
439
440 #if defined(POSIXALIGNEDALLOC)
441     void* mem;
442     return posix_memalign(&mem, alignment, size) ? nullptr : mem;
443 #elif defined(_WIN32) && !defined(_M_ARM) && !defined(_M_ARM64)
444     return _mm_malloc(size, alignment);
445 #elif defined(_WIN32)
446     return _aligned_malloc(size, alignment);
447 #else
448     return std::aligned_alloc(alignment, size);
449 #endif
450 }
451
452 void std_aligned_free(void* ptr) {
453
454 #if defined(POSIXALIGNEDALLOC)
455     free(ptr);
456 #elif defined(_WIN32) && !defined(_M_ARM) && !defined(_M_ARM64)
457     _mm_free(ptr);
458 #elif defined(_WIN32)
459     _aligned_free(ptr);
460 #else
461     free(ptr);
462 #endif
463 }
464
465 // aligned_large_pages_alloc() will return suitably aligned memory, if possible using large pages.
466
467 #if defined(_WIN32)
468
469 static void* aligned_large_pages_alloc_windows([[maybe_unused]] size_t allocSize) {
470
471     #if !defined(_WIN64)
472     return nullptr;
473     #else
474
475     HANDLE hProcessToken{};
476     LUID   luid{};
477     void*  mem = nullptr;
478
479     const size_t largePageSize = GetLargePageMinimum();
480     if (!largePageSize)
481         return nullptr;
482
483     // Dynamically link OpenProcessToken, LookupPrivilegeValue and AdjustTokenPrivileges
484
485     HMODULE hAdvapi32 = GetModuleHandle(TEXT("advapi32.dll"));
486
487     if (!hAdvapi32)
488         hAdvapi32 = LoadLibrary(TEXT("advapi32.dll"));
489
490     auto fun6 = fun6_t((void (*)()) GetProcAddress(hAdvapi32, "OpenProcessToken"));
491     if (!fun6)
492         return nullptr;
493     auto fun7 = fun7_t((void (*)()) GetProcAddress(hAdvapi32, "LookupPrivilegeValueA"));
494     if (!fun7)
495         return nullptr;
496     auto fun8 = fun8_t((void (*)()) GetProcAddress(hAdvapi32, "AdjustTokenPrivileges"));
497     if (!fun8)
498         return nullptr;
499
500     // We need SeLockMemoryPrivilege, so try to enable it for the process
501     if (!fun6(  // OpenProcessToken()
502           GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hProcessToken))
503         return nullptr;
504
505     if (fun7(  // LookupPrivilegeValue(nullptr, SE_LOCK_MEMORY_NAME, &luid)
506           nullptr, "SeLockMemoryPrivilege", &luid))
507     {
508         TOKEN_PRIVILEGES tp{};
509         TOKEN_PRIVILEGES prevTp{};
510         DWORD            prevTpLen = 0;
511
512         tp.PrivilegeCount           = 1;
513         tp.Privileges[0].Luid       = luid;
514         tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
515
516         // Try to enable SeLockMemoryPrivilege. Note that even if AdjustTokenPrivileges() succeeds,
517         // we still need to query GetLastError() to ensure that the privileges were actually obtained.
518         if (fun8(  // AdjustTokenPrivileges()
519               hProcessToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), &prevTp, &prevTpLen)
520             && GetLastError() == ERROR_SUCCESS)
521         {
522             // Round up size to full pages and allocate
523             allocSize = (allocSize + largePageSize - 1) & ~size_t(largePageSize - 1);
524             mem       = VirtualAlloc(nullptr, allocSize, MEM_RESERVE | MEM_COMMIT | MEM_LARGE_PAGES,
525                                      PAGE_READWRITE);
526
527             // Privilege no longer needed, restore previous state
528             fun8(  // AdjustTokenPrivileges ()
529               hProcessToken, FALSE, &prevTp, 0, nullptr, nullptr);
530         }
531     }
532
533     CloseHandle(hProcessToken);
534
535     return mem;
536
537     #endif
538 }
539
540 void* aligned_large_pages_alloc(size_t allocSize) {
541
542     // Try to allocate large pages
543     void* mem = aligned_large_pages_alloc_windows(allocSize);
544
545     // Fall back to regular, page-aligned, allocation if necessary
546     if (!mem)
547         mem = VirtualAlloc(nullptr, allocSize, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
548
549     return mem;
550 }
551
552 #else
553
554 void* aligned_large_pages_alloc(size_t allocSize) {
555
556     #if defined(__linux__)
557     constexpr size_t alignment = 2 * 1024 * 1024;  // assumed 2MB page size
558     #else
559     constexpr size_t alignment = 4096;  // assumed small page size
560     #endif
561
562     // Round up to multiples of alignment
563     size_t size = ((allocSize + alignment - 1) / alignment) * alignment;
564     void*  mem  = std_aligned_alloc(alignment, size);
565     #if defined(MADV_HUGEPAGE)
566     madvise(mem, size, MADV_HUGEPAGE);
567     #endif
568     return mem;
569 }
570
571 #endif
572
573
574 // aligned_large_pages_free() will free the previously allocated ttmem
575
576 #if defined(_WIN32)
577
578 void aligned_large_pages_free(void* mem) {
579
580     if (mem && !VirtualFree(mem, 0, MEM_RELEASE))
581     {
582         DWORD err = GetLastError();
583         std::cerr << "Failed to free large page memory. Error code: 0x" << std::hex << err
584                   << std::dec << std::endl;
585         exit(EXIT_FAILURE);
586     }
587 }
588
589 #else
590
591 void aligned_large_pages_free(void* mem) { std_aligned_free(mem); }
592
593 #endif
594
595
596 namespace WinProcGroup {
597
598 #ifndef _WIN32
599
600 void bindThisThread(size_t) {}
601
602 #else
603
604 // Retrieves logical processor information using Windows-specific
605 // API and returns the best node id for the thread with index idx. Original
606 // code from Texel by Peter Ă–sterlund.
607 static int best_node(size_t idx) {
608
609     int   threads      = 0;
610     int   nodes        = 0;
611     int   cores        = 0;
612     DWORD returnLength = 0;
613     DWORD byteOffset   = 0;
614
615     // Early exit if the needed API is not available at runtime
616     HMODULE k32  = GetModuleHandle(TEXT("Kernel32.dll"));
617     auto    fun1 = (fun1_t) (void (*)()) GetProcAddress(k32, "GetLogicalProcessorInformationEx");
618     if (!fun1)
619         return -1;
620
621     // First call to GetLogicalProcessorInformationEx() to get returnLength.
622     // We expect the call to fail due to null buffer.
623     if (fun1(RelationAll, nullptr, &returnLength))
624         return -1;
625
626     // Once we know returnLength, allocate the buffer
627     SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX *buffer, *ptr;
628     ptr = buffer = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX*) malloc(returnLength);
629
630     // Second call to GetLogicalProcessorInformationEx(), now we expect to succeed
631     if (!fun1(RelationAll, buffer, &returnLength))
632     {
633         free(buffer);
634         return -1;
635     }
636
637     while (byteOffset < returnLength)
638     {
639         if (ptr->Relationship == RelationNumaNode)
640             nodes++;
641
642         else if (ptr->Relationship == RelationProcessorCore)
643         {
644             cores++;
645             threads += (ptr->Processor.Flags == LTP_PC_SMT) ? 2 : 1;
646         }
647
648         assert(ptr->Size);
649         byteOffset += ptr->Size;
650         ptr = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX*) (((char*) ptr) + ptr->Size);
651     }
652
653     free(buffer);
654
655     std::vector<int> groups;
656
657     // Run as many threads as possible on the same node until the core limit is
658     // reached, then move on to filling the next node.
659     for (int n = 0; n < nodes; n++)
660         for (int i = 0; i < cores / nodes; i++)
661             groups.push_back(n);
662
663     // In case a core has more than one logical processor (we assume 2) and we
664     // still have threads to allocate, spread them evenly across available nodes.
665     for (int t = 0; t < threads - cores; t++)
666         groups.push_back(t % nodes);
667
668     // If we still have more threads than the total number of logical processors
669     // then return -1 and let the OS to decide what to do.
670     return idx < groups.size() ? groups[idx] : -1;
671 }
672
673
674 // Sets the group affinity of the current thread
675 void bindThisThread(size_t idx) {
676
677     // Use only local variables to be thread-safe
678     int node = best_node(idx);
679
680     if (node == -1)
681         return;
682
683     // Early exit if the needed API are not available at runtime
684     HMODULE k32  = GetModuleHandle(TEXT("Kernel32.dll"));
685     auto    fun2 = fun2_t((void (*)()) GetProcAddress(k32, "GetNumaNodeProcessorMaskEx"));
686     auto    fun3 = fun3_t((void (*)()) GetProcAddress(k32, "SetThreadGroupAffinity"));
687     auto    fun4 = fun4_t((void (*)()) GetProcAddress(k32, "GetNumaNodeProcessorMask2"));
688     auto    fun5 = fun5_t((void (*)()) GetProcAddress(k32, "GetMaximumProcessorGroupCount"));
689
690     if (!fun2 || !fun3)
691         return;
692
693     if (!fun4 || !fun5)
694     {
695         GROUP_AFFINITY affinity;
696         if (fun2(node, &affinity))                         // GetNumaNodeProcessorMaskEx
697             fun3(GetCurrentThread(), &affinity, nullptr);  // SetThreadGroupAffinity
698     }
699     else
700     {
701         // If a numa node has more than one processor group, we assume they are
702         // sized equal and we spread threads evenly across the groups.
703         USHORT elements, returnedElements;
704         elements                 = fun5();  // GetMaximumProcessorGroupCount
705         GROUP_AFFINITY* affinity = (GROUP_AFFINITY*) malloc(elements * sizeof(GROUP_AFFINITY));
706         if (fun4(node, affinity, elements, &returnedElements))  // GetNumaNodeProcessorMask2
707             fun3(GetCurrentThread(), &affinity[idx % returnedElements],
708                  nullptr);  // SetThreadGroupAffinity
709         free(affinity);
710     }
711 }
712
713 #endif
714
715 }  // namespace WinProcGroup
716
717 #ifdef _WIN32
718     #include <direct.h>
719     #define GETCWD _getcwd
720 #else
721     #include <unistd.h>
722     #define GETCWD getcwd
723 #endif
724
725 namespace CommandLine {
726
727 std::string argv0;             // path+name of the executable binary, as given by argv[0]
728 std::string binaryDirectory;   // path of the executable directory
729 std::string workingDirectory;  // path of the working directory
730
731 void init([[maybe_unused]] int argc, char* argv[]) {
732     std::string pathSeparator;
733
734     // Extract the path+name of the executable binary
735     argv0 = argv[0];
736
737 #ifdef _WIN32
738     pathSeparator = "\\";
739     #ifdef _MSC_VER
740     // Under windows argv[0] may not have the extension. Also _get_pgmptr() had
741     // issues in some Windows 10 versions, so check returned values carefully.
742     char* pgmptr = nullptr;
743     if (!_get_pgmptr(&pgmptr) && pgmptr != nullptr && *pgmptr)
744         argv0 = pgmptr;
745     #endif
746 #else
747     pathSeparator = "/";
748 #endif
749
750     // Extract the working directory
751     workingDirectory = "";
752     char  buff[40000];
753     char* cwd = GETCWD(buff, 40000);
754     if (cwd)
755         workingDirectory = cwd;
756
757     // Extract the binary directory path from argv0
758     binaryDirectory = argv0;
759     size_t pos      = binaryDirectory.find_last_of("\\/");
760     if (pos == std::string::npos)
761         binaryDirectory = "." + pathSeparator;
762     else
763         binaryDirectory.resize(pos + 1);
764
765     // Pattern replacement: "./" at the start of path is replaced by the working directory
766     if (binaryDirectory.find("." + pathSeparator) == 0)
767         binaryDirectory.replace(0, 1, workingDirectory);
768 }
769
770
771 }  // namespace CommandLine
772
773 }  // namespace Stockfish