可能重复:
如何在 C++ 中计算代码片段的执行时间
如何获取某些 C++ 代码中一组特定语句所花费的时间?
类似于time
Linux 下的实用程序,但仅适用于某些特定语句。
您可以使用<chrono>
标准库中的标头:
#include <chrono>
#include <iostream>
unsigned long long fib(unsigned long long n) {
return (0==n || 1==n) ? 1 : fib(n-1) + fib(n-2);
}
int main() {
unsigned long long n = 0;
while (true) {
auto start = std::chrono::high_resolution_clock::now();
fib(++n);
auto finish = std::chrono::high_resolution_clock::now();
auto microseconds = std::chrono::duration_cast<std::chrono::microseconds>(finish-start);
std::cout << microseconds.count() << "µs\n";
if (microseconds > std::chrono::seconds(1))
break;
}
}
你需要自己测量时间。我通常使用的小秒表类如下所示:
#include <chrono>
#include <iostream>
template <typename Clock = std::chrono::steady_clock>
class stopwatch
{
typename Clock::time_point last_;
public:
stopwatch()
: last_(Clock::now())
{}
void reset()
{
*this = stopwatch();
}
typename Clock::duration elapsed() const
{
return Clock::now() - last_;
}
typename Clock::duration tick()
{
auto now = Clock::now();
auto elapsed = now - last_;
last_ = now;
return elapsed;
}
};
template <typename T, typename Rep, typename Period>
T duration_cast(const std::chrono::duration<Rep, Period>& duration)
{
return duration.count() * static_cast<T>(Period::num) / static_cast<T>(Period::den);
}
int main()
{
stopwatch<> sw;
// ...
std::cout << "Elapsed: " << duration_cast<double>(sw.elapsed()) << '\n';
}
duration_cast 可能不是函数的最佳名称,因为标准库中已经存在具有此名称的函数。随意想出一个更好的。;)
编辑:请注意,chrono 来自 C++11。
std::chrono
或者boost::chrono
(如果您的编译器不支持 C++11)可以用于此。
std::chrono::high_resolution_clock::time_point start(
std::chrono::high_resolution_clock::now() );
....
std::cout << (std::chrono::high_resolution_clock::now() - start);
可能重复:如何在 C++ 中计算代码片段的执行时间
您可以使用 time.h C 标准库(在http://www.cplusplus.com/reference/clibrary/ctime/有更详细的解释)。以下程序可以满足您的要求:
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
clock_t t1,t2;
t1=clock();
//code goes here
t2=clock();
float diff = ((float)t2-(float)t1)/CLOCKS_PER_SEC;
cout << "Running time: " << diff << endl;
return 0;
}
你也可以这样做:
int start_s=clock();
// the code you wish to time goes here
int stop_s=clock();
cout << "time: " << (stop_s-start_s)/double(CLOCKS_PER_SEC)*1000 << endl;
你需要编写一个简单的计时系统。c++ 中没有内置方法。
#include <sys/time.h>
class Timer
{
private:
struct timeval start_t;
public:
double start() { gettimeofday(&start_t, NULL); }
double get_ms() {
struct timeval now;
gettimeofday(&now, NULL);
return (now.tv_usec-start_t.tv_usec)/(double)1000.0 +
(now.tv_sec-start_t.tv_sec)*(double)1000.0;
}
double get_ms_reset() {
double res = get_ms();
reset();
return res;
}
Timer() { start(); }
};
int main()
{
Timer t();
double used_ms;
// run slow code..
used_ms = t.get_ms_reset();
// run slow code..
used_ms += t.get_ms_reset();
return 0;
}
请注意,测量本身会显着影响运行时间。
如果您使用的是 GNU gcc/g++:
尝试使用 --coverage 重新编译,重新运行程序并使用 gprof 实用程序分析生成的文件。它还将打印函数的执行时间。
编辑:使用-pg 编译和链接,而不是--coverage,--coverage 用于gcov(实际执行哪些行)。
这是非常好的代码片段,在 windows 和 linux 上运行良好:https
://stackoverflow.com/a/1861337/1483826
要使用它,运行它并将结果保存为“开始时间”并在操作之后 - “结束时间”。减去并除以您需要的任何精度。
您可以使用#inclide <ctime>
标题。它的功能和用途在这里。假设您想查看代码花费了多少时间。您必须在该部分开始之前获取当前时间,并在该部分结束之后获取另一个当前时间。然后取这两次的差。在内部声明了现成的函数ctime
来完成所有这些工作。只需检查上面的链接。