Skip to content

Commit

Permalink
Relax blaze cache size assertion. Likely we will not have CPUs with L…
Browse files Browse the repository at this point in the history
…3 caches of 10 Gb soon.
  • Loading branch information
asl committed Nov 6, 2024
1 parent 3aa8c8e commit e0ba2cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/include/blaze/blaze/system/CacheSize.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit e0ba2cb

Please sign in to comment.