This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a commit to branch revert-40857-cpu-info-asimd
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 1dc5dbc910e4efae124aaa99ab08400455bfc8dc
Author: Antoine Pitrou <[email protected]>
AuthorDate: Wed Apr 3 17:47:30 2024 +0200

    Revert "GH-40806: [C++] Correctly report asimd/neon in GetRuntimeInfo 
(#40857)"
    
    This reverts commit 6cecbab5172b2b339277dde741bfff455646eb32.
---
 cpp/src/arrow/config.cc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/cpp/src/arrow/config.cc b/cpp/src/arrow/config.cc
index 1f852e84d3..9e32e54373 100644
--- a/cpp/src/arrow/config.cc
+++ b/cpp/src/arrow/config.cc
@@ -58,8 +58,6 @@ std::string MakeSimdLevelString(QueryFlagFunction&& 
query_flag) {
     return "avx";
   } else if (query_flag(CpuInfo::SSE4_2)) {
     return "sse4_2";
-  } else if (query_flag(CpuInfo::ASIMD)) {
-    return "neon";
   } else {
     return "none";
   }

Reply via email to