From fc0e30472997492875d5fdc11ef58fc7bce3fdf0 Mon Sep 17 00:00:00 2001 From: Valentin Seitz Date: Tue, 16 Jul 2024 14:54:35 +0200 Subject: [PATCH] - Renamed output file - renamed window names --- src/backends/extrae/extrae_type_stack.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backends/extrae/extrae_type_stack.cpp b/src/backends/extrae/extrae_type_stack.cpp index 97e472c..94e89a6 100644 --- a/src/backends/extrae/extrae_type_stack.cpp +++ b/src/backends/extrae/extrae_type_stack.cpp @@ -205,7 +205,7 @@ void ExtraeTypeStackStrategy::Finalize() noexcept { } if (write_config_file_.getValue().value_or(write_config_file_default_)) { - std::string fileName = "NESMIK_Annotations.cfg"; + std::string fileName = "nesmik_annotations.cfg"; std::ofstream outputFile; outputFile.open(fileName); @@ -246,7 +246,7 @@ void ExtraeTypeStackStrategy::Finalize() noexcept { for (unsigned int level = 0; level <= regionStackData.historicMaxStackSize; level++) { std::string windowName = - "NESMIK Instrumentation Level: " + std::to_string(level); + "neSmiK Instrumentation Level: " + std::to_string(level); auto replacedEventType = std::regex_replace( paraverConfigLevelWindow, std::regex("NESMIK_REPLACE_EVENT_TYPE"), -- GitLab