mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
4e294b9bfc
* Revert "Merge pull request #41752 from ClickHouse/revert-revert-revert" This reverts commit7bb245720a
, reversing changes made to78002dc248
. * Revert "Merge pull request #41797 from ClickHouse/revert-41247" This reverts commit69b13d9f31
, reversing changes made to1719e000ea
. * AVX512VBMI::vectorIndexImpl: Fix heap buffer overflow when limit == 0 * use SIMD_ELEMENTS instead of SIMD_BYTES to avoid confusing
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
#include <base/defines.h>
|
|
#include <Common/TargetSpecific.h>
|
|
|
|
#include <Common/CpuId.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
UInt32 getSupportedArchs()
|
|
{
|
|
UInt32 result = 0;
|
|
if (Cpu::CpuFlagsCache::have_SSE42)
|
|
result |= static_cast<UInt32>(TargetArch::SSE42);
|
|
if (Cpu::CpuFlagsCache::have_AVX)
|
|
result |= static_cast<UInt32>(TargetArch::AVX);
|
|
if (Cpu::CpuFlagsCache::have_AVX2)
|
|
result |= static_cast<UInt32>(TargetArch::AVX2);
|
|
if (Cpu::CpuFlagsCache::have_AVX512F)
|
|
result |= static_cast<UInt32>(TargetArch::AVX512F);
|
|
if (Cpu::CpuFlagsCache::have_AVX512BW)
|
|
result |= static_cast<UInt32>(TargetArch::AVX512BW);
|
|
if (Cpu::CpuFlagsCache::have_AVX512VBMI)
|
|
result |= static_cast<UInt32>(TargetArch::AVX512VBMI);
|
|
if (Cpu::CpuFlagsCache::have_AVX512VBMI2)
|
|
result |= static_cast<UInt32>(TargetArch::AVX512VBMI2);
|
|
return result;
|
|
}
|
|
|
|
bool isArchSupported(TargetArch arch)
|
|
{
|
|
static UInt32 arches = getSupportedArchs();
|
|
return arch == TargetArch::Default || (arches & static_cast<UInt32>(arch));
|
|
}
|
|
|
|
String toString(TargetArch arch)
|
|
{
|
|
switch (arch)
|
|
{
|
|
case TargetArch::Default: return "default";
|
|
case TargetArch::SSE42: return "sse42";
|
|
case TargetArch::AVX: return "avx";
|
|
case TargetArch::AVX2: return "avx2";
|
|
case TargetArch::AVX512F: return "avx512f";
|
|
case TargetArch::AVX512BW: return "avx512bw";
|
|
case TargetArch::AVX512VBMI: return "avx512vbmi";
|
|
case TargetArch::AVX512VBMI2: return "avx512vbmi";
|
|
}
|
|
|
|
UNREACHABLE();
|
|
}
|
|
|
|
}
|