
``` ----------------------------------------------------------------------------- Benchmark old new ----------------------------------------------------------------------------- bm_mismatch_two_range_overload<char>/1 0.941 ns 1.88 ns bm_mismatch_two_range_overload<char>/2 1.43 ns 2.15 ns bm_mismatch_two_range_overload<char>/3 1.95 ns 2.55 ns bm_mismatch_two_range_overload<char>/4 2.58 ns 2.90 ns bm_mismatch_two_range_overload<char>/5 3.75 ns 3.31 ns bm_mismatch_two_range_overload<char>/6 5.00 ns 3.83 ns bm_mismatch_two_range_overload<char>/7 5.59 ns 4.35 ns bm_mismatch_two_range_overload<char>/8 6.37 ns 4.84 ns bm_mismatch_two_range_overload<char>/16 11.8 ns 6.72 ns bm_mismatch_two_range_overload<char>/64 45.5 ns 2.59 ns bm_mismatch_two_range_overload<char>/512 366 ns 12.6 ns bm_mismatch_two_range_overload<char>/4096 2890 ns 91.6 ns bm_mismatch_two_range_overload<char>/32768 23038 ns 758 ns bm_mismatch_two_range_overload<char>/262144 142813 ns 6573 ns bm_mismatch_two_range_overload<char>/1048576 366679 ns 26710 ns bm_mismatch_two_range_overload<short>/1 0.934 ns 1.88 ns bm_mismatch_two_range_overload<short>/2 1.30 ns 2.58 ns bm_mismatch_two_range_overload<short>/3 1.76 ns 3.28 ns bm_mismatch_two_range_overload<short>/4 2.24 ns 3.98 ns bm_mismatch_two_range_overload<short>/5 2.80 ns 4.92 ns bm_mismatch_two_range_overload<short>/6 3.58 ns 6.01 ns bm_mismatch_two_range_overload<short>/7 4.29 ns 7.03 ns bm_mismatch_two_range_overload<short>/8 4.67 ns 7.39 ns bm_mismatch_two_range_overload<short>/16 9.86 ns 13.1 ns bm_mismatch_two_range_overload<short>/64 38.9 ns 4.55 ns bm_mismatch_two_range_overload<short>/512 348 ns 27.7 ns bm_mismatch_two_range_overload<short>/4096 2881 ns 225 ns bm_mismatch_two_range_overload<short>/32768 23111 ns 1715 ns bm_mismatch_two_range_overload<short>/262144 184846 ns 14416 ns bm_mismatch_two_range_overload<short>/1048576 742885 ns 57264 ns bm_mismatch_two_range_overload<int>/1 0.838 ns 1.19 ns bm_mismatch_two_range_overload<int>/2 1.19 ns 1.65 ns bm_mismatch_two_range_overload<int>/3 1.83 ns 2.06 ns bm_mismatch_two_range_overload<int>/4 2.38 ns 2.42 ns bm_mismatch_two_range_overload<int>/5 3.60 ns 2.47 ns bm_mismatch_two_range_overload<int>/6 3.68 ns 3.05 ns bm_mismatch_two_range_overload<int>/7 4.32 ns 3.36 ns bm_mismatch_two_range_overload<int>/8 5.18 ns 3.58 ns bm_mismatch_two_range_overload<int>/16 10.6 ns 2.84 ns bm_mismatch_two_range_overload<int>/64 39.0 ns 7.78 ns bm_mismatch_two_range_overload<int>/512 247 ns 53.9 ns bm_mismatch_two_range_overload<int>/4096 1927 ns 429 ns bm_mismatch_two_range_overload<int>/32768 15569 ns 3393 ns bm_mismatch_two_range_overload<int>/262144 125413 ns 28504 ns bm_mismatch_two_range_overload<int>/1048576 504549 ns 112729 ns ```
131 lines
4.6 KiB
C++
131 lines
4.6 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP___ALGORITHM_SIMD_UTILS_H
|
|
#define _LIBCPP___ALGORITHM_SIMD_UTILS_H
|
|
|
|
#include <__algorithm/min.h>
|
|
#include <__bit/bit_cast.h>
|
|
#include <__bit/countr.h>
|
|
#include <__config>
|
|
#include <__type_traits/is_arithmetic.h>
|
|
#include <__type_traits/is_same.h>
|
|
#include <__utility/integer_sequence.h>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
# pragma GCC system_header
|
|
#endif
|
|
|
|
_LIBCPP_PUSH_MACROS
|
|
#include <__undef_macros>
|
|
|
|
// TODO: Find out how altivec changes things and allow vectorizations there too.
|
|
#if _LIBCPP_STD_VER >= 14 && defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER >= 1700 && !defined(__ALTIVEC__)
|
|
# define _LIBCPP_HAS_ALGORITHM_VECTOR_UTILS 1
|
|
#else
|
|
# define _LIBCPP_HAS_ALGORITHM_VECTOR_UTILS 0
|
|
#endif
|
|
|
|
#if _LIBCPP_HAS_ALGORITHM_VECTOR_UTILS && !defined(__OPTIMIZE_SIZE__)
|
|
# define _LIBCPP_VECTORIZE_ALGORITHMS 1
|
|
#else
|
|
# define _LIBCPP_VECTORIZE_ALGORITHMS 0
|
|
#endif
|
|
|
|
#if _LIBCPP_HAS_ALGORITHM_VECTOR_UTILS
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
// This isn't specialized for 64 byte vectors on purpose. They have the potential to significantly reduce performance
|
|
// in mixed simd/non-simd workloads and don't provide any performance improvement for currently vectorized algorithms
|
|
// as far as benchmarks are concerned.
|
|
# if defined(__AVX__)
|
|
template <class _Tp>
|
|
inline constexpr size_t __native_vector_size = 32 / sizeof(_Tp);
|
|
# elif defined(__SSE__) || defined(__ARM_NEON__)
|
|
template <class _Tp>
|
|
inline constexpr size_t __native_vector_size = 16 / sizeof(_Tp);
|
|
# elif defined(__MMX__)
|
|
template <class _Tp>
|
|
inline constexpr size_t __native_vector_size = 8 / sizeof(_Tp);
|
|
# else
|
|
template <class _Tp>
|
|
inline constexpr size_t __native_vector_size = 1;
|
|
# endif
|
|
|
|
template <class _ArithmeticT, size_t _Np>
|
|
using __simd_vector __attribute__((__ext_vector_type__(_Np))) = _ArithmeticT;
|
|
|
|
template <class _VecT>
|
|
inline constexpr size_t __simd_vector_size_v = []<bool _False = false>() -> size_t {
|
|
static_assert(_False, "Not a vector!");
|
|
}();
|
|
|
|
template <class _Tp, size_t _Np>
|
|
inline constexpr size_t __simd_vector_size_v<__simd_vector<_Tp, _Np>> = _Np;
|
|
|
|
template <class _Tp, size_t _Np>
|
|
_LIBCPP_HIDE_FROM_ABI _Tp __simd_vector_underlying_type_impl(__simd_vector<_Tp, _Np>) {
|
|
return _Tp{};
|
|
}
|
|
|
|
template <class _VecT>
|
|
using __simd_vector_underlying_type_t = decltype(std::__simd_vector_underlying_type_impl(_VecT{}));
|
|
|
|
// This isn't inlined without always_inline when loading chars.
|
|
template <class _VecT, class _Tp>
|
|
_LIBCPP_NODISCARD _LIBCPP_ALWAYS_INLINE _LIBCPP_HIDE_FROM_ABI _VecT __load_vector(const _Tp* __ptr) noexcept {
|
|
return [=]<size_t... _Indices>(index_sequence<_Indices...>) _LIBCPP_ALWAYS_INLINE noexcept {
|
|
return _VecT{__ptr[_Indices]...};
|
|
}(make_index_sequence<__simd_vector_size_v<_VecT>>{});
|
|
}
|
|
|
|
template <class _Tp, size_t _Np>
|
|
_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI bool __all_of(__simd_vector<_Tp, _Np> __vec) noexcept {
|
|
return __builtin_reduce_and(__builtin_convertvector(__vec, __simd_vector<bool, _Np>));
|
|
}
|
|
|
|
template <class _Tp, size_t _Np>
|
|
_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI size_t __find_first_set(__simd_vector<_Tp, _Np> __vec) noexcept {
|
|
using __mask_vec = __simd_vector<bool, _Np>;
|
|
|
|
// This has MSan disabled du to https://github.com/llvm/llvm-project/issues/85876
|
|
auto __impl = [&]<class _MaskT>(_MaskT) _LIBCPP_NO_SANITIZE("memory") noexcept {
|
|
return std::min<size_t>(
|
|
_Np, std::__countr_zero(__builtin_bit_cast(_MaskT, __builtin_convertvector(__vec, __mask_vec))));
|
|
};
|
|
|
|
if constexpr (sizeof(__mask_vec) == sizeof(uint8_t)) {
|
|
return __impl(uint8_t{});
|
|
} else if constexpr (sizeof(__mask_vec) == sizeof(uint16_t)) {
|
|
return __impl(uint16_t{});
|
|
} else if constexpr (sizeof(__mask_vec) == sizeof(uint32_t)) {
|
|
return __impl(uint32_t{});
|
|
} else if constexpr (sizeof(__mask_vec) == sizeof(uint64_t)) {
|
|
return __impl(uint64_t{});
|
|
} else {
|
|
static_assert(sizeof(__mask_vec) == 0, "unexpected required size for mask integer type");
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
template <class _Tp, size_t _Np>
|
|
_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI size_t __find_first_not_set(__simd_vector<_Tp, _Np> __vec) noexcept {
|
|
return std::__find_first_set(~__vec);
|
|
}
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
#endif // _LIBCPP_HAS_ALGORITHM_VECTOR_UTILS
|
|
|
|
_LIBCPP_POP_MACROS
|
|
|
|
#endif // _LIBCPP___ALGORITHM_SIMD_UTILS_H
|