Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-17 08:39:06

0001 /* Copyright 2025 Joaquin M Lopez Munoz.
0002  * Distributed under the Boost Software License, Version 1.0.
0003  * (See accompanying file LICENSE_1_0.txt or copy at
0004  * http://www.boost.org/LICENSE_1_0.txt)
0005  *
0006  * See https://www.boost.org/libs/bloom for library home page.
0007  */
0008 
0009 #ifndef BOOST_BLOOM_FAST_MULTIBLOCK64_HPP
0010 #define BOOST_BLOOM_FAST_MULTIBLOCK64_HPP
0011 
0012 #include <boost/bloom/detail/avx2.hpp>
0013 
0014 #if defined(BOOST_BLOOM_AVX2)
0015 #include <boost/bloom/detail/fast_multiblock64_avx2.hpp>
0016 #else /* fallback */
0017 #include <boost/bloom/multiblock.hpp>
0018 #include <cstddef>
0019 #include <cstdint>
0020 
0021 namespace boost{
0022 namespace bloom{
0023 
0024 template<std::size_t K>
0025 using fast_multiblock64=multiblock<std::uint64_t,K>;
0026 
0027 } /* namespace bloom */
0028 } /* namespace boost */
0029 #endif
0030 
0031 #endif