mirror of https://github.com/milvus-io/milvus.git
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
parent
d05926f7ac
commit
32d5c5b3c3
|
@ -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) \
|
||||
|
|
Loading…
Reference in New Issue