size change

main
Brett 2024-03-11 10:58:30 -04:00
parent ec50b98782
commit 19bb69bb35
2 changed files with 4 additions and 9 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25) cmake_minimum_required(VERSION 3.25)
project(lilfbtf5 VERSION 0.1.10) project(lilfbtf5 VERSION 0.1.11)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

View File

@ -1343,10 +1343,11 @@ namespace fb
} }
}; };
constexpr auto size = 128;
constexpr auto tree_size = 17;
void run_any_t() void run_any_t()
{ {
constexpr auto size = 512;
constexpr auto tree_size = 17;
engine.reset(); engine.reset();
tree_any love[size]; tree_any love[size];
BLT_START_INTERVAL("Tree Construction", "any_t tree"); BLT_START_INTERVAL("Tree Construction", "any_t tree");
@ -1362,8 +1363,6 @@ namespace fb
void run_any_t_variant() void run_any_t_variant()
{ {
constexpr auto size = 512;
constexpr auto tree_size = 17;
engine.reset(); engine.reset();
tree_any_variant love[size]; tree_any_variant love[size];
BLT_START_INTERVAL("Tree Construction", "any_t_variant tree"); BLT_START_INTERVAL("Tree Construction", "any_t_variant tree");
@ -1379,8 +1378,6 @@ namespace fb
void run_any_t_union() void run_any_t_union()
{ {
constexpr auto size = 512;
constexpr auto tree_size = 17;
engine.reset(); engine.reset();
tree_any_union love[size]; tree_any_union love[size];
BLT_START_INTERVAL("Tree Construction", "any_t_union tree"); BLT_START_INTERVAL("Tree Construction", "any_t_union tree");
@ -1396,8 +1393,6 @@ namespace fb
void run_std_any_t() void run_std_any_t()
{ {
constexpr auto size = 512;
constexpr auto tree_size = 17;
engine.reset(); engine.reset();
tree_std_any love[size]; tree_std_any love[size];
BLT_START_INTERVAL("Tree Construction", "std::any tree"); BLT_START_INTERVAL("Tree Construction", "std::any tree");