made epoch array smaller

This commit is contained in:
joaquintides
2023-12-03 09:45:09 +01:00
parent 5af735827f
commit 821a2bfb45

View File

@ -973,7 +973,7 @@ private:
#if defined(BOOST_UNORDERED_LATCH_FREE)
using epoch_type=std::atomic<std::size_t>;
using epoch_array=cache_aligned_array<epoch_type,128>; // TODO: adapt 128 to the machine
using epoch_array=cache_aligned_array<epoch_type,16>; // TODO: adapt 16 to the machine
#endif
#if defined(BOOST_UNORDERED_LATCH_FREE)