aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/actions/action_axpy.hh
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-04 23:12:48 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-04 23:12:48 +0000
commita7a05382d1c51964bf3ea0536c6ddd9cc9888b72 (patch)
tree413a9ecf342bf59ff685495eff70f999ee7803ac /bench/btl/actions/action_axpy.hh
parentc2f8ecf46683adcab0db05199ee2ebe15e6ada4a (diff)
Add a LU decomposition action in BTL and various cleaning in BTL. For instance
all per plot settings have been moved to a single file, go_mean now takes an optional second argument "tiny" to generate plots for tiny matrices, and output of comparison information wrt to previous benchs (if any).
Diffstat (limited to 'bench/btl/actions/action_axpy.hh')
-rw-r--r--bench/btl/actions/action_axpy.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/bench/btl/actions/action_axpy.hh b/bench/btl/actions/action_axpy.hh
index 8740e413d..50759f6f6 100644
--- a/bench/btl/actions/action_axpy.hh
+++ b/bench/btl/actions/action_axpy.hh
@@ -96,7 +96,9 @@ public :
}
inline void calculate( void ) {
- Interface::axpy(_coef,X,Y,_size);
+ asm("#mybegin axpy");
+ Interface::axpy(_coef,X,Y,_size);
+ asm("#myend axpy");
}
void check_result( void ){