From 70ad7c466f953f34af99a0fe247fb9c0285ca70e Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Mon, 4 Nov 2024 15:29:11 +0300 Subject: [PATCH] Relax blaze cache size assertion. Likely we will not have CPUs with L3 caches of 10 Gb soon. --- ext/include/blaze/blaze/system/CacheSize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/include/blaze/blaze/system/CacheSize.h b/ext/include/blaze/blaze/system/CacheSize.h index 1b98ce5932..daf64e4e15 100644 --- a/ext/include/blaze/blaze/system/CacheSize.h +++ b/ext/include/blaze/blaze/system/CacheSize.h @@ -74,7 +74,7 @@ constexpr size_t cacheSize = BLAZE_CACHE_SIZE; /*! \cond BLAZE_INTERNAL */ namespace { -BLAZE_STATIC_ASSERT( blaze::cacheSize > 100000UL && blaze::cacheSize < 100000000UL ); +BLAZE_STATIC_ASSERT( blaze::cacheSize > 100000UL && blaze::cacheSize < UINT64_C(10000000000) ); } /*! \endcond */