Skip to content

Commit

Permalink
GH-40806: [C++] Revert changes from PR #40857 (#40980)
Browse files Browse the repository at this point in the history
Revert changes from #40857.

`GetRuntimeInfo` returns the SIMD level for dynamic dispatch, but Neon currently does not participate in dynamic dispatch (actually, Neon should be available by default on all modern Arm CPUs AFAIU).

Authored-by: Antoine Pitrou <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
  • Loading branch information
pitrou authored Apr 4, 2024
1 parent 36ed032 commit 26631d7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cpp/src/arrow/config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
Expand Down

0 comments on commit 26631d7

Please sign in to comment.