我正在编写一个不断需要从特定函数计算值的代码。在进行了一些分析之后,我发现我的程序的这一部分是花费大部分时间的地方。
到目前为止,我不允许使用少于 100 MB 的空间,最多可以使用 2GB。线性插值将用于矩阵中点之间的点。
如果您有巨大的查找表(如您所说的数百 MB),它不适合缓存 - 很可能内存查找时间将远高于计算本身。RAM“非常慢”,尤其是在从巨大数组的随机位置获取时。
这是综合测试:
现场演示
#include <boost/progress.hpp>
#include <iostream>
#include <ostream>
#include <vector>
#include <cmath>
using namespace boost;
using namespace std;
inline double calc(double x)
{
return ( tanh( 3*(5-x) ) *0.5 + 0.5);
}
template<typename F>
void test(F &&f)
{
progress_timer t;
volatile double res;
for(unsigned i=0;i!=1<<26;++i)
res = f(i);
(void)res;
}
int main()
{
const unsigned size = (1 << 26) + 1;
vector<double> table(size);
cout << "table size is " << 1.0*sizeof(double)*size/(1 << 20) << "MiB" << endl;
cout << "calc ";
test(calc);
cout << "dummy lookup ";
test([&](unsigned i){return table[(i << 12)%size];}); // dummy lookup, not real values
}
我机器上的输出是:
table size is 512MiB
calc 0.52 s
dummy lookup 0.92 s