mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-03 17:31:58 +08:00
enhance: Fix template declaration order for ArithHelperF32 in SVE implementation (#43949)
Signed-off-by: Li Liu <li.liu@zilliz.com>
This commit is contained in:
parent
580350495a
commit
7dd2b103b0
@ -1314,6 +1314,10 @@ struct ArithHelperI64<ArithOpType::Mul, CmpOp> {
|
||||
}
|
||||
};
|
||||
|
||||
//
|
||||
template <ArithOpType AOp, CompareOpType CmpOp>
|
||||
struct ArithHelperF32 {};
|
||||
|
||||
template <CompareOpType CmpOp>
|
||||
struct ArithHelperF32<ArithOpType::Div, CmpOp> {
|
||||
static inline svbool_t
|
||||
@ -1338,10 +1342,6 @@ struct ArithHelperF32<ArithOpType::Div, CmpOp> {
|
||||
}
|
||||
};
|
||||
|
||||
//
|
||||
template <ArithOpType AOp, CompareOpType CmpOp>
|
||||
struct ArithHelperF32 {};
|
||||
|
||||
template <CompareOpType CmpOp>
|
||||
struct ArithHelperF32<ArithOpType::Add, CmpOp> {
|
||||
static inline svbool_t
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user