AntoinePrv commented on code in PR #49756:
URL: https://github.com/apache/arrow/pull/49756#discussion_r3118913740
##########
cpp/src/arrow/util/cpu_info.h:
##########
@@ -56,6 +56,10 @@ class ARROW_EXPORT CpuInfo {
/// Arm features
static constexpr int64_t ASIMD = (1LL << 32);
+ static constexpr int64_t SVE = (1LL << 33);
+ static constexpr int64_t SVE128 = (1LL << 36);
+ static constexpr int64_t SVE256 = (1LL << 34);
+ static constexpr int64_t SVE512 = (1LL << 35);
Review Comment:
Right I don't think we need it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]