From f83ad3b2f4ad1d20046f38c56b358653eb3e76eb Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 21 Jan 2025 11:55:39 -0500 Subject: [PATCH] alloc tracker --- CMakeLists.txt | 2 +- tests/drop_test.cpp | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 90eba65..2ea1ffe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ macro(compile_options target_name) sanitizers(${target_name}) endmacro() -project(blt-gp VERSION 0.3.28) +project(blt-gp VERSION 0.3.29) include(CTest) diff --git a/tests/drop_test.cpp b/tests/drop_test.cpp index 118440e..1513b1f 100644 --- a/tests/drop_test.cpp +++ b/tests/drop_test.cpp @@ -25,6 +25,7 @@ std::atomic_uint64_t normal_construct = 0; std::atomic_uint64_t ephemeral_construct = 0; std::atomic_uint64_t normal_drop = 0; std::atomic_uint64_t ephemeral_drop = 0; +std::atomic_uint64_t max_allocated = 0; struct drop_type { @@ -109,6 +110,8 @@ operation_t op_x([](const context& context) bool fitness_function(const tree_t& current_tree, fitness_t& fitness, size_t) { + if (normal_construct - normal_drop > max_allocated) + max_allocated = normal_construct - normal_drop; constexpr static double value_cutoff = 1.e15; for (auto& fitness_case : regression.get_training_cases()) { @@ -159,5 +162,6 @@ int main() BLT_TRACE("Dropped %ld times", normal_drop.load()); BLT_TRACE("Ephemeral created %ld times", ephemeral_construct.load()); BLT_TRACE("Ephemeral dropped %ld times", ephemeral_drop.load()); + BLT_TRACE("Max allocated %ld times", max_allocated.load()); }