aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/libs/BLAS/blas_interface_impl.hh
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-12-02 11:32:03 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-12-02 11:32:03 +0100
commitd2718d662c9759c29ed98456ab4abb128fc1a614 (patch)
tree3e9a590acc61e1c60e1740ed9124bc35d4edf913 /bench/btl/libs/BLAS/blas_interface_impl.hh
parent8c24723a09cd6b3852d2a5a0748f6a250d1d40f5 (diff)
Re-enable A^T*A action in BTL
Diffstat (limited to 'bench/btl/libs/BLAS/blas_interface_impl.hh')
-rw-r--r--bench/btl/libs/BLAS/blas_interface_impl.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/btl/libs/BLAS/blas_interface_impl.hh b/bench/btl/libs/BLAS/blas_interface_impl.hh
index fc4ba2a1f..9e0a64905 100644
--- a/bench/btl/libs/BLAS/blas_interface_impl.hh
+++ b/bench/btl/libs/BLAS/blas_interface_impl.hh
@@ -46,9 +46,9 @@ public :
BLAS_FUNC(gemm)(&notrans,&notrans,&N,&N,&N,&fone,A,&N,B,&N,&fzero,X,&N);
}
-// static inline void ata_product(gene_matrix & A, gene_matrix & X, int N){
-// ssyrk_(&lower,&trans,&N,&N,&fone,A,&N,&fzero,X,&N);
-// }
+ static inline void ata_product(gene_matrix & A, gene_matrix & X, int N){
+ BLAS_FUNC(syrk)(&lower,&trans,&N,&N,&fone,A,&N,&fzero,X,&N);
+ }
static inline void aat_product(gene_matrix & A, gene_matrix & X, int N){
BLAS_FUNC(syrk)(&lower,&notrans,&N,&N,&fone,A,&N,&fzero,X,&N);