fix: add bitset sve support macro protect (#32464)

pr: #32463

Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
2.4-hotfix
zhagnlu 2024-04-22 12:29:24 +08:00 committed by Liang Huang
parent d05926f7ac
commit 32d5c5b3c3
1 changed files with 2 additions and 1 deletions

View File

@ -478,6 +478,7 @@ init_dynamic_hook() {
#endif
#if defined(__aarch64__)
#if defined(__ARM_FEATURE_SVE)
// sve
if (arm::InstructionSet::GetInstance().supports_sve()) {
#define SET_OP_COMPARE_COLUMN_SVE(TTYPE, UTYPE, OP) \
@ -542,7 +543,7 @@ init_dynamic_hook() {
return;
}
#endif
// neon ?
{
#define SET_OP_COMPARE_COLUMN_NEON(TTYPE, UTYPE, OP) \