Skip to content

Commit

Permalink
Revert "[branch-2.1](compile) fix compile failed caused by <immintrin…
Browse files Browse the repository at this point in the history
….h>"

This reverts commit 8d56ded.
  • Loading branch information
xiedeyantu committed Jul 19, 2024
1 parent a8e392b commit 0d1012a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions be/src/util/simd/vstring_function.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@

#pragma once

#ifdef __AVX2__
#include <immintrin.h>

#include "gutil/macros.h"
#endif
#include <unistd.h>

#include <array>
Expand Down Expand Up @@ -116,7 +112,7 @@ class VStringFunctions {

if constexpr (trim_single) {
const auto ch = remove_str.data[0];
#if defined(__AVX2__)
#if defined(__AVX2__) || defined(__aarch64__)
constexpr auto AVX2_BYTES = sizeof(__m256i);
const auto size = end - begin;
const auto* const avx2_begin = end - size / AVX2_BYTES * AVX2_BYTES;
Expand Down Expand Up @@ -157,7 +153,7 @@ class VStringFunctions {

if constexpr (trim_single) {
const auto ch = remove_str.data[0];
#if defined(__AVX2__)
#if defined(__AVX2__) || defined(__aarch64__)
constexpr auto AVX2_BYTES = sizeof(__m256i);
const auto size = end - begin;
const auto* const avx2_end = begin + size / AVX2_BYTES * AVX2_BYTES;
Expand Down

0 comments on commit 0d1012a

Please sign in to comment.