sync up May15 2023

This commit is contained in:
amdsc21
2023-05-15 18:59:18 +02:00
37 changed files with 628 additions and 398 deletions

View File

@@ -150,7 +150,7 @@ inline LINALG_HD int Popc(uint64_t v) {
return __popcll(v);
#elif defined(__GNUC__) || defined(__clang__) || defined(__HIP_PLATFORM_AMD__)
return __builtin_popcountll(v);
#elif defined(_MSC_VER) && _defined(_M_X64)
#elif defined(_MSC_VER) && defined(_M_X64)
return __popcnt64(v);
#else
return NativePopc(v);