diff --git a/CMakeLists.txt b/CMakeLists.txt index 355f39c..7903257 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(COSC-4P80-Assignment-3 VERSION 0.0.34) +project(COSC-4P80-Assignment-3 VERSION 0.0.35) include(FetchContent) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) diff --git a/src/main.cpp b/src/main.cpp index 46c8acf..6da4d76 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -23,7 +23,7 @@ void plot_heatmap(const std::string& path, const std::string& activations_csv, c const std::string command = "cd '" + path + "' && python3 '" + pwd + "../plot_heatmap.py' '" + activations_csv + "' '" + std::to_string(bin_size) + "' '" + subtitle + "'"; - BLT_TRACE(command);g + BLT_TRACE(command); std::system(command.c_str()); #endif }