小编典典

在 C++ 中测量函数的执行时间

all

我想知道某个函数在我的 C++ 程序中在Linux 上执行需要多少时间。之后,我想做一个速度比较。我看到了几个时间函数,但最终从 boost
中得到了这个。计时:

process_user_cpu_clock, captures user-CPU time spent by the current process

现在,我不清楚如果我使用上面的函数,我会得到唯一的 CPU 花费在那个函数上的时间吗?

其次,我找不到任何使用上述功能的例子。有人可以帮我如何使用上述功能吗?

PS:现在,我习惯于std::chrono::system_clock::now()以秒为单位获取时间,但由于每次 CPU
负载不同,这给了我不同的结果。


阅读 79

收藏
2022-06-27

共1个答案

小编典典

这是 C++11 中非常易于使用的方法。您必须使用std::chrono::high_resolution_clock来自<chrono>标头。

像这样使用它:

#include <chrono>

/* Only needed for the sake of this example. */
#include <iostream>
#include <thread>

void long_operation()
{
    /* Simulating a long, heavy operation. */

    using namespace std::chrono_literals;
    std::this_thread::sleep_for(150ms);
}

int main()
{
    using std::chrono::high_resolution_clock;
    using std::chrono::duration_cast;
    using std::chrono::duration;
    using std::chrono::milliseconds;

    auto t1 = high_resolution_clock::now();
    long_operation();
    auto t2 = high_resolution_clock::now();

    /* Getting number of milliseconds as an integer. */
    auto ms_int = duration_cast<milliseconds>(t2 - t1);

    /* Getting number of milliseconds as a double. */
    duration<double, std::milli> ms_double = t2 - t1;

    std::cout << ms_int.count() << "ms\n";
    std::cout << ms_double.count() << "ms\n";
    return 0;
}

这将测量函数的持续时间long_operation

可能的输出:

150ms
150.068ms

工作示例:https ://godbolt.org/z/oe5cMd

2022-06-27