2011-04-20から1日間の記事一覧

Boost.Chronoで実行時間の簡単な測定

C++

Boost 1.47.0で導入予定のBoost.Chronoでの簡単な実行時間の測定です。 #include <boost/chrono/process_times.hpp> #include <cmath> int main() { boost::chrono::run_timer t; for (int i = 0; i < 100000; ++i) std::sqrt(123.456L); // 時間のかかる処理 } real 0.008s, cpu 0.016s (185.1%), u</cmath></boost/chrono/process_times.hpp>…