考虑以下代码:LWS
#include <iostream>
#include <chrono>
#include <cmath>
#include <ctime>
#include <cstdlib>
template <class Counter, class Function, class... Args>
inline double benchmark(const Counter& counter, Function&& f, Args&&... args)
{
const std::chrono::high_resolution_clock::time_point marker
= std::chrono::high_resolution_clock::now();
for (Counter i = Counter(); i < counter; ++i) {
f(args...);
}
return std::chrono::duration_cast<std::chrono::duration<double> >
(std::chrono::high_resolution_clock::now()-marker).count();
}
int main(int argc, char* argv[])
{
srand(time(nullptr));
double y = rand()%10+1;
std::cout<<benchmark(1000000, [](double x){return std::sin(x);}, y)<<"\n";
return 0;
}
该函数benchmark
测量函数的执行时间。问题是函数在优化过程中被删除为空语句。有没有办法强制函数真正执行?
编辑:1)我正在寻找标准 C++ 中的解决方案(没有特定于编译器的指令) 2)如果f
可以保持尽可能通用(例如 void 返回类型)会更好