/* * Copyright 2013-2020 Software Radio Systems Limited * * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * srsLTE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * A copy of the GNU Affero General Public License can be found in * the LICENSE file in the top-level directory of this distribution * and at http://www.gnu.org/licenses/. * */ #include "srslte/common/time_prof.h" #include #include using namespace srslte; using std::chrono::nanoseconds; // log utils template const char* get_tunit_str() { return ""; } template <> const char* get_tunit_str() { return "nsec"; } template <> const char* get_tunit_str() { return "usec"; } template <> const char* get_tunit_str() { return "msec"; } template <> const char* get_tunit_str() { return "sec"; } template <> const char* get_tunit_str() { return "min"; } // tprof stats avg_time_stats::avg_time_stats(const char* name_, const char* logname, size_t print_period_) : name(name_), log_ptr(srslte::logmap::get(logname)), print_period(print_period_) { } void avg_time_stats::operator()(nanoseconds duration) { count++; avg_val = avg_val * (count - 1) / count + static_cast(duration.count()) / count; max_val = std::max(max_val, duration.count()); min_val = std::min(min_val, duration.count()); if (count % print_period == 0) { log_ptr->info("%s: {mean, max, min}={%0.1f, %ld, %ld} usec, nof_samples=%ld", name.c_str(), avg_val / 1e3, max_val / 1000, min_val / 1000, count); } } template sliding_window_stats::sliding_window_stats(const char* name_, const char* logname, size_t print_period_) : name(name_), log_ptr(srslte::logmap::get(logname)), sliding_window(print_period_) { } template void sliding_window_stats::operator()(nanoseconds duration) { using std::chrono::duration_cast; const char* unit_str = get_tunit_str(); TUnit dur = std::chrono::duration_cast(duration); log_ptr->debug("%s: duration=%ld %s\n", name.c_str(), dur.count(), unit_str); sliding_window[window_idx++] = duration; if (window_idx == sliding_window.size()) { nanoseconds tsum = accumulate(sliding_window.begin(), sliding_window.end(), std::chrono::nanoseconds{0}); nanoseconds tmax = *std::max_element(sliding_window.begin(), sliding_window.end()); nanoseconds tmin = *std::min_element(sliding_window.begin(), sliding_window.end()); double tmean = static_cast(duration_cast(tsum).count()) / sliding_window.size(); log_ptr->info("%s: {mean, max, min} = {%0.2f, %ld, %ld} %s\n", name.c_str(), tmean, duration_cast(tmax).count(), duration_cast(tmin).count(), unit_str); window_idx = 0; } } template class srslte::sliding_window_stats; template class srslte::sliding_window_stats;