polybar/include/debug.hpp

23 lines
590 B
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#ifdef DEBUG
#pragma once
#include <iostream>
2016-11-20 22:04:31 +00:00
#include <chrono>
2016-06-15 03:32:35 +00:00
template <class T>
void benchmark_execution_speed(const T& expr) noexcept {
auto start = std::chrono::high_resolution_clock::now();
expr();
auto finish = std::chrono::high_resolution_clock::now();
std::cout << "execution speed: "
<< std::chrono::duration_cast<std::chrono::milliseconds>(finish - start).count() << "ms"
<< std::endl;
}
template <class T>
void benchmark_memory_usage(const T& object) noexcept {
std::cout << "memory usage: " << sizeof(object) << "b" << std::endl;
}
#endif