fast_multiblock64.hpp 754 B

1234567891011121314151617181920212223242526272829303132
  1. /* Copyright 2025 Joaquin M Lopez Munoz.
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * See https://www.boost.org/libs/bloom for library home page.
  7. */
  8. #ifndef BOOST_BLOOM_FAST_MULTIBLOCK64_HPP
  9. #define BOOST_BLOOM_FAST_MULTIBLOCK64_HPP
  10. #include <boost/bloom/detail/avx2.hpp>
  11. #if defined(BOOST_BLOOM_AVX2)
  12. #include <boost/bloom/detail/fast_multiblock64_avx2.hpp>
  13. #else /* fallback */
  14. #include <boost/bloom/multiblock.hpp>
  15. #include <cstddef>
  16. #include <cstdint>
  17. namespace boost{
  18. namespace bloom{
  19. template<std::size_t K>
  20. using fast_multiblock64=multiblock<std::uint64_t,K>;
  21. } /* namespace bloom */
  22. } /* namespace boost */
  23. #endif
  24. #endif