我目前使用C进行数值计算.我听说使用C Expression Templates更适合科学计算.什么是C表达模板简单来说?
解决方法
What are C++ Expression Templates in simple terms? @H_301_4@
Expression templates是C模板元编程的一类,它延迟子表达式的评估,直到已知完整表达式,从而可以应用优化(尤其是消除临时).@H_301_4@
Are there books around that discuss numerical methods/computations using C++ Expression Templates?@H_301_4@
我相信ET是由Todd Veldhuizen发明的,他在15年前发表了一篇论文. (似乎很多旧链接到现在已经死了,但目前here是它的一个版本.)有关它的一些材料是David Vandevoorde和Nicolai Josuttis’C++ Templates: The Complete Guide.@H_301_4@
In what way,C++ Expression Templates are better than using pure C?@H_301_4@
它们允许您以富有表现力的高级方式编写代码而不会降低性能.例如,@H_301_4@
void f(const my_array<double> a1,const my_array<double> a2) { my_array<double> a3 = 1.2 * a1 + a1 * a2; // .. }
可以一直优化到@H_301_4@
for( my_array<double>::size_type idx=0; idx<a1.size(); ++idx ) a3[idx] = 1.2*a1[idx] + a1[idx]*a2[idx];
哪个更快,但更难理解.@H_301_4@