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

Measuring execution time of a function in C++(在 C++ 中测量函数的执行时间)
本文介绍了在 C++ 中测量函数的执行时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

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

I want to find out how much time a certain function takes in my C++ program to execute on Linux. Afterwards, I want to make a speed comparison . I saw several time function but ended up with this from boost. Chrono:

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

现在,我不清楚是否使用上述功能,我是否会获得 CPU 在该功能上花费的唯一时间?

Now, I am not clear if I use the above function, will I get the only time which CPU spent on that function?

其次,我找不到任何使用上述功能的示例.任何人都可以帮助我如何使用上述功能吗?

Secondly, I could not find any example of using the above function. Can any one please help me how to use the above function?

PS:现在,我正在使用 std::chrono::system_clock::now() 以秒为单位获取时间,但是由于每次 CPU 负载不同,这会给我不同的结果.

P.S: Right now , I am using std::chrono::system_clock::now() to get time in seconds but this gives me different results due to different CPU load every time.

推荐答案

它是 C++11 中非常易于使用的方法.您必须使用 标头中的 std::chrono::high_resolution_clock.

It is a very easy-to-use method in C++11. You have to use std::chrono::high_resolution_clock from <chrono> header.

像这样使用它:

#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
";
    std::cout << ms_double.count() << "ms";
    return 0;
}

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

This will measure the duration of the function long_operation.

可能的输出:

150ms
150.068ms

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

这篇关于在 C++ 中测量函数的执行时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Algorithm to convert RGB to HSV and HSV to RGB in range 0-255 for both(将 RGB 转换为 HSV 并将 HSV 转换为 RGB 的算法,范围为 0-255)
How to convert an enum type variable to a string?(如何将枚举类型变量转换为字符串?)
When to use inline function and when not to use it?(什么时候使用内联函数,什么时候不使用?)
Examples of good gotos in C or C++(C 或 C++ 中好的 goto 示例)
Significance of ios_base::sync_with_stdio(false); cin.tie(NULL);(ios_base::sync_with_stdio(false) 的意义;cin.tie(NULL);)
Is TCHAR still relevant?(TCHAR 仍然相关吗?)