1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-07-11 19:49:14 +00:00
Bench: 4471740
This commit is contained in:
joergoster 2020-06-24 18:04:28 +02:00
parent 89bbe86800
commit 8ef6c837b7

View file

@ -142,6 +142,7 @@ inline uint64_t mul_hi64(uint64_t a, uint64_t b) {
uint64_t c3 = aL * bH + (uint32_t)c2; uint64_t c3 = aL * bH + (uint32_t)c2;
return aH * bH + (c2 >> 32) + (c3 >> 32); return aH * bH + (c2 >> 32) + (c3 >> 32);
#endif #endif
}
/// Under Windows it is not possible for a process to run on more than one /// 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 /// logical processor group. This usually means to be limited to use max 64